├── .gitignore ├── License.md ├── README.md ├── data └── sample.png ├── environment.yml ├── main.py ├── model.py ├── model └── epoch_20_saved.pth ├── run.sh ├── sort_of_clevr_generator.py └── translator.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimhc6028/relational-networks/HEAD/.gitignore -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimhc6028/relational-networks/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimhc6028/relational-networks/HEAD/README.md -------------------------------------------------------------------------------- /data/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimhc6028/relational-networks/HEAD/data/sample.png -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimhc6028/relational-networks/HEAD/environment.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimhc6028/relational-networks/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimhc6028/relational-networks/HEAD/model.py -------------------------------------------------------------------------------- /model/epoch_20_saved.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimhc6028/relational-networks/HEAD/model/epoch_20_saved.pth -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimhc6028/relational-networks/HEAD/run.sh -------------------------------------------------------------------------------- /sort_of_clevr_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimhc6028/relational-networks/HEAD/sort_of_clevr_generator.py -------------------------------------------------------------------------------- /translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimhc6028/relational-networks/HEAD/translator.py --------------------------------------------------------------------------------