Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lzzcd001/ade-code
Code for "Exponential Family Estimation via Adversarial Dynamics Embedding" (NeurIPS 2019)
https://github.com/lzzcd001/ade-code
energy-based-model generative-model
Last synced: 3 months ago
JSON representation
Code for "Exponential Family Estimation via Adversarial Dynamics Embedding" (NeurIPS 2019)
- Host: GitHub
- URL: https://github.com/lzzcd001/ade-code
- Owner: lzzcd001
- Created: 2019-10-26T22:52:19.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-26T07:29:41.000Z (almost 5 years ago)
- Last Synced: 2024-07-04T01:01:17.686Z (4 months ago)
- Topics: energy-based-model, generative-model
- Language: Python
- Homepage:
- Size: 10.1 MB
- Stars: 13
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Code for ADE
The code is organized into two parts. The first part is for synthetic experiments, while the second one is for experiments on Cifar10. See below for more information
## Synthetic Experiments:
![demo](gif/pinwheel.gif)![demo](gif/moons.gif)
### install
First use pip install to install the package, as well as the corresponding dependencies, including sonnet, tensorflow, etc.
```
pip install -e .
```### Multivariate gaussian
Here is a simple example to use ADE for recovering parameters from a multivariate gaussian distribution.
```
cd ade/experiments/mvn_unimodal
./run_ade.sh
```### Toy datasets
We here show a script for moons dataset. You can modify it for other datasets with different parameters.
```
cd ade/experiments/toy_family
./run_moons.sh
```## Experiments on Cifar10:
Please see `ade_cifar` folder for more information.