├── .gitignore ├── LICENSE.txt ├── README.md ├── notebooks └── example.ipynb ├── npc ├── losses.py ├── model.py └── synthesizer.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicarlolab/npc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicarlolab/npc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicarlolab/npc/HEAD/README.md -------------------------------------------------------------------------------- /notebooks/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicarlolab/npc/HEAD/notebooks/example.ipynb -------------------------------------------------------------------------------- /npc/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicarlolab/npc/HEAD/npc/losses.py -------------------------------------------------------------------------------- /npc/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicarlolab/npc/HEAD/npc/model.py -------------------------------------------------------------------------------- /npc/synthesizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicarlolab/npc/HEAD/npc/synthesizer.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicarlolab/npc/HEAD/setup.py --------------------------------------------------------------------------------