├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── images │ └── tabpfgen_featureimage.jpg └── index.md ├── pyproject.toml ├── requirements.txt ├── setup.py ├── src └── tabpfgen │ ├── __init__.py │ ├── tabpfgen.py │ └── visuals.py ├── tests └── test_tabpfgen.py └── tutorial ├── 01_tabpfgen_class_.md ├── 02_tabpfn_integration_.md ├── 03_classification_generation___generate_classification___.md ├── 04_regression_generation___generate_regression___.md ├── 05_sgld_sampling____sgld_step___.md ├── 06_energy_function____compute_energy___.md ├── 07_visualization___visuals_py___.md └── index.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/tabpfgen_featureimage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/docs/images/tabpfgen_featureimage.jpg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/docs/index.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/setup.py -------------------------------------------------------------------------------- /src/tabpfgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/src/tabpfgen/__init__.py -------------------------------------------------------------------------------- /src/tabpfgen/tabpfgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/src/tabpfgen/tabpfgen.py -------------------------------------------------------------------------------- /src/tabpfgen/visuals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/src/tabpfgen/visuals.py -------------------------------------------------------------------------------- /tests/test_tabpfgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/tests/test_tabpfgen.py -------------------------------------------------------------------------------- /tutorial/01_tabpfgen_class_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/tutorial/01_tabpfgen_class_.md -------------------------------------------------------------------------------- /tutorial/02_tabpfn_integration_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/tutorial/02_tabpfn_integration_.md -------------------------------------------------------------------------------- /tutorial/03_classification_generation___generate_classification___.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/tutorial/03_classification_generation___generate_classification___.md -------------------------------------------------------------------------------- /tutorial/04_regression_generation___generate_regression___.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/tutorial/04_regression_generation___generate_regression___.md -------------------------------------------------------------------------------- /tutorial/05_sgld_sampling____sgld_step___.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/tutorial/05_sgld_sampling____sgld_step___.md -------------------------------------------------------------------------------- /tutorial/06_energy_function____compute_energy___.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/tutorial/06_energy_function____compute_energy___.md -------------------------------------------------------------------------------- /tutorial/07_visualization___visuals_py___.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/tutorial/07_visualization___visuals_py___.md -------------------------------------------------------------------------------- /tutorial/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebhaan/TabPFGen/HEAD/tutorial/index.md --------------------------------------------------------------------------------