├── .github └── workflows │ ├── bib2readme.py │ ├── generate_readme_from_bib.yml │ ├── requirements.txt │ └── update_website.yml ├── .gitignore ├── CNAME ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── resources.bib └── website ├── config.toml ├── content └── .gitkeep ├── static ├── .gitkeep └── CNAME └── templates ├── base.html ├── index.html └── partials └── styles.css /.github/workflows/bib2readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/.github/workflows/bib2readme.py -------------------------------------------------------------------------------- /.github/workflows/generate_readme_from_bib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/.github/workflows/generate_readme_from_bib.yml -------------------------------------------------------------------------------- /.github/workflows/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/.github/workflows/requirements.txt -------------------------------------------------------------------------------- /.github/workflows/update_website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/.github/workflows/update_website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | awesome-amortized-inference.bayesflow.org -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/README.md -------------------------------------------------------------------------------- /resources.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/resources.bib -------------------------------------------------------------------------------- /website/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/website/config.toml -------------------------------------------------------------------------------- /website/content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/CNAME: -------------------------------------------------------------------------------- 1 | awesome-amortized-inference.bayesflow.org -------------------------------------------------------------------------------- /website/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/website/templates/base.html -------------------------------------------------------------------------------- /website/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/website/templates/index.html -------------------------------------------------------------------------------- /website/templates/partials/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bayesflow-org/awesome-amortized-inference/HEAD/website/templates/partials/styles.css --------------------------------------------------------------------------------