├── .gitignore ├── README.md ├── app └── gradio_app.py ├── assets ├── pipeline.png └── teaser.png ├── creative.ipynb └── requirement.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftJarvis/RAT/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftJarvis/RAT/HEAD/README.md -------------------------------------------------------------------------------- /app/gradio_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftJarvis/RAT/HEAD/app/gradio_app.py -------------------------------------------------------------------------------- /assets/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftJarvis/RAT/HEAD/assets/pipeline.png -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftJarvis/RAT/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /creative.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftJarvis/RAT/HEAD/creative.ipynb -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CraftJarvis/RAT/HEAD/requirement.txt --------------------------------------------------------------------------------