├── .gitignore ├── LICENSE ├── README.md ├── deepebm └── ebm.py ├── gflownet.py ├── network.py ├── synthetic ├── synthetic_data.py ├── synthetic_utils.py └── train.py └── utils_data.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GFNOrg/EB_GFN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GFNOrg/EB_GFN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GFNOrg/EB_GFN/HEAD/README.md -------------------------------------------------------------------------------- /deepebm/ebm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GFNOrg/EB_GFN/HEAD/deepebm/ebm.py -------------------------------------------------------------------------------- /gflownet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GFNOrg/EB_GFN/HEAD/gflownet.py -------------------------------------------------------------------------------- /network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GFNOrg/EB_GFN/HEAD/network.py -------------------------------------------------------------------------------- /synthetic/synthetic_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GFNOrg/EB_GFN/HEAD/synthetic/synthetic_data.py -------------------------------------------------------------------------------- /synthetic/synthetic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GFNOrg/EB_GFN/HEAD/synthetic/synthetic_utils.py -------------------------------------------------------------------------------- /synthetic/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GFNOrg/EB_GFN/HEAD/synthetic/train.py -------------------------------------------------------------------------------- /utils_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GFNOrg/EB_GFN/HEAD/utils_data.py --------------------------------------------------------------------------------