├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── benchmarks ├── __init__.py ├── configs │ ├── cifar_config.json │ ├── femnist_config.json │ └── stackoverflow_config.json ├── get_data.sh ├── run_cifar10_dirichlet.py ├── run_femnist.py ├── run_stackoverflow.py └── utils.py └── images └── summary.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/benchmarks/__init__.py -------------------------------------------------------------------------------- /benchmarks/configs/cifar_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/benchmarks/configs/cifar_config.json -------------------------------------------------------------------------------- /benchmarks/configs/femnist_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/benchmarks/configs/femnist_config.json -------------------------------------------------------------------------------- /benchmarks/configs/stackoverflow_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/benchmarks/configs/stackoverflow_config.json -------------------------------------------------------------------------------- /benchmarks/get_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/benchmarks/get_data.sh -------------------------------------------------------------------------------- /benchmarks/run_cifar10_dirichlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/benchmarks/run_cifar10_dirichlet.py -------------------------------------------------------------------------------- /benchmarks/run_femnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/benchmarks/run_femnist.py -------------------------------------------------------------------------------- /benchmarks/run_stackoverflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/benchmarks/run_stackoverflow.py -------------------------------------------------------------------------------- /benchmarks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/benchmarks/utils.py -------------------------------------------------------------------------------- /images/summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/where_to_begin/HEAD/images/summary.png --------------------------------------------------------------------------------