├── README.md ├── example.py ├── figures ├── swiss_dsf.png └── swiss_iaf.png ├── naf ├── DensityEstimator.py ├── __init__.py ├── distributions.py ├── torchkit └── visualize2D.py └── torchkit /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-Huang/naf_examples/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-Huang/naf_examples/HEAD/example.py -------------------------------------------------------------------------------- /figures/swiss_dsf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-Huang/naf_examples/HEAD/figures/swiss_dsf.png -------------------------------------------------------------------------------- /figures/swiss_iaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-Huang/naf_examples/HEAD/figures/swiss_iaf.png -------------------------------------------------------------------------------- /naf/DensityEstimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-Huang/naf_examples/HEAD/naf/DensityEstimator.py -------------------------------------------------------------------------------- /naf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-Huang/naf_examples/HEAD/naf/__init__.py -------------------------------------------------------------------------------- /naf/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-Huang/naf_examples/HEAD/naf/distributions.py -------------------------------------------------------------------------------- /naf/torchkit: -------------------------------------------------------------------------------- 1 | ../torchkit/ -------------------------------------------------------------------------------- /naf/visualize2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CW-Huang/naf_examples/HEAD/naf/visualize2D.py -------------------------------------------------------------------------------- /torchkit: -------------------------------------------------------------------------------- 1 | ../torchkit/ --------------------------------------------------------------------------------