├── .gitignore ├── Demo.ipynb ├── Inference.ipynb ├── LICENSE.md ├── Notice ├── README.md ├── STABILITY_AI_COMMUNITY_LICENSE.md ├── __init__.py ├── assets ├── tangoflux.png ├── tf_opener.png └── tf_teaser.png ├── comfyui ├── README.md ├── __init__.py ├── example_workflow.json ├── install.py ├── nodes.py ├── requirements.txt ├── server.py ├── teacache.py └── web │ └── js │ └── playAudio.js ├── configs ├── __init__.py ├── accelerator_config.yaml └── tangoflux_config.yaml ├── crpo.sh ├── data ├── .gitkeep ├── __init__.py ├── test.wav ├── train.json ├── train_dpo.json └── val.json ├── inference.py ├── replicate_demo ├── cog.yaml └── predict.py ├── requirements.txt ├── setup.py ├── tangoflux ├── __init__.py ├── cli.py ├── demo.py ├── generate_crpo_dataset.py ├── label_crpo.py ├── model.py ├── train.py ├── train_dpo.py └── utils.py └── train.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/Demo.ipynb -------------------------------------------------------------------------------- /Inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/Inference.ipynb -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Notice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/Notice -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/README.md -------------------------------------------------------------------------------- /STABILITY_AI_COMMUNITY_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/STABILITY_AI_COMMUNITY_LICENSE.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/tangoflux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/assets/tangoflux.png -------------------------------------------------------------------------------- /assets/tf_opener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/assets/tf_opener.png -------------------------------------------------------------------------------- /assets/tf_teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/assets/tf_teaser.png -------------------------------------------------------------------------------- /comfyui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/comfyui/README.md -------------------------------------------------------------------------------- /comfyui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/comfyui/__init__.py -------------------------------------------------------------------------------- /comfyui/example_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/comfyui/example_workflow.json -------------------------------------------------------------------------------- /comfyui/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/comfyui/install.py -------------------------------------------------------------------------------- /comfyui/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/comfyui/nodes.py -------------------------------------------------------------------------------- /comfyui/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/comfyui/requirements.txt -------------------------------------------------------------------------------- /comfyui/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/comfyui/server.py -------------------------------------------------------------------------------- /comfyui/teacache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/comfyui/teacache.py -------------------------------------------------------------------------------- /comfyui/web/js/playAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/comfyui/web/js/playAudio.js -------------------------------------------------------------------------------- /configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/accelerator_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/configs/accelerator_config.yaml -------------------------------------------------------------------------------- /configs/tangoflux_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/configs/tangoflux_config.yaml -------------------------------------------------------------------------------- /crpo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/crpo.sh -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | *.wav -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/data/test.wav -------------------------------------------------------------------------------- /data/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/data/train.json -------------------------------------------------------------------------------- /data/train_dpo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/data/train_dpo.json -------------------------------------------------------------------------------- /data/val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/data/val.json -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/inference.py -------------------------------------------------------------------------------- /replicate_demo/cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/replicate_demo/cog.yaml -------------------------------------------------------------------------------- /replicate_demo/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/replicate_demo/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/setup.py -------------------------------------------------------------------------------- /tangoflux/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/tangoflux/__init__.py -------------------------------------------------------------------------------- /tangoflux/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/tangoflux/cli.py -------------------------------------------------------------------------------- /tangoflux/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/tangoflux/demo.py -------------------------------------------------------------------------------- /tangoflux/generate_crpo_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/tangoflux/generate_crpo_dataset.py -------------------------------------------------------------------------------- /tangoflux/label_crpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/tangoflux/label_crpo.py -------------------------------------------------------------------------------- /tangoflux/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/tangoflux/model.py -------------------------------------------------------------------------------- /tangoflux/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/tangoflux/train.py -------------------------------------------------------------------------------- /tangoflux/train_dpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/tangoflux/train_dpo.py -------------------------------------------------------------------------------- /tangoflux/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/tangoflux/utils.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/declare-lab/TangoFlux/HEAD/train.sh --------------------------------------------------------------------------------