├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── fauxtograph ├── __init__.py ├── fauxto.py ├── fauxtograph.py └── vaegan.py ├── notebook └── VAEGAN_example.ipynb ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stitchfix/fauxtograph/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stitchfix/fauxtograph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stitchfix/fauxtograph/HEAD/README.md -------------------------------------------------------------------------------- /fauxtograph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stitchfix/fauxtograph/HEAD/fauxtograph/__init__.py -------------------------------------------------------------------------------- /fauxtograph/fauxto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stitchfix/fauxtograph/HEAD/fauxtograph/fauxto.py -------------------------------------------------------------------------------- /fauxtograph/fauxtograph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stitchfix/fauxtograph/HEAD/fauxtograph/fauxtograph.py -------------------------------------------------------------------------------- /fauxtograph/vaegan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stitchfix/fauxtograph/HEAD/fauxtograph/vaegan.py -------------------------------------------------------------------------------- /notebook/VAEGAN_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stitchfix/fauxtograph/HEAD/notebook/VAEGAN_example.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stitchfix/fauxtograph/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stitchfix/fauxtograph/HEAD/setup.py --------------------------------------------------------------------------------