├── .gitignore ├── MADE ├── __init__.py ├── layer_types.py ├── made.py ├── mask_generator.py ├── tests │ ├── test_autoregressive_property.py │ ├── test_mask_generator.py │ └── test_masks.py ├── update_rules.py └── weights_initializer.py ├── README.md ├── dataset.py ├── datasets ├── adult.npz ├── connect4.npz ├── dna.npz ├── mushrooms.npz ├── nips.npz ├── ocr_letters.npz └── web.npz ├── sampleMADE.py ├── testMADE.py ├── trainMADE.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/.gitignore -------------------------------------------------------------------------------- /MADE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MADE/layer_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/MADE/layer_types.py -------------------------------------------------------------------------------- /MADE/made.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/MADE/made.py -------------------------------------------------------------------------------- /MADE/mask_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/MADE/mask_generator.py -------------------------------------------------------------------------------- /MADE/tests/test_autoregressive_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/MADE/tests/test_autoregressive_property.py -------------------------------------------------------------------------------- /MADE/tests/test_mask_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/MADE/tests/test_mask_generator.py -------------------------------------------------------------------------------- /MADE/tests/test_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/MADE/tests/test_masks.py -------------------------------------------------------------------------------- /MADE/update_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/MADE/update_rules.py -------------------------------------------------------------------------------- /MADE/weights_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/MADE/weights_initializer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/dataset.py -------------------------------------------------------------------------------- /datasets/adult.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/datasets/adult.npz -------------------------------------------------------------------------------- /datasets/connect4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/datasets/connect4.npz -------------------------------------------------------------------------------- /datasets/dna.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/datasets/dna.npz -------------------------------------------------------------------------------- /datasets/mushrooms.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/datasets/mushrooms.npz -------------------------------------------------------------------------------- /datasets/nips.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/datasets/nips.npz -------------------------------------------------------------------------------- /datasets/ocr_letters.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/datasets/ocr_letters.npz -------------------------------------------------------------------------------- /datasets/web.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/datasets/web.npz -------------------------------------------------------------------------------- /sampleMADE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/sampleMADE.py -------------------------------------------------------------------------------- /testMADE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/testMADE.py -------------------------------------------------------------------------------- /trainMADE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/trainMADE.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgermain/MADE/HEAD/utils.py --------------------------------------------------------------------------------