├── .gitignore ├── LICENSE ├── README.md ├── benchmarks ├── benchmark_preprocess.py ├── clip │ ├── CLIP-MultiLingual-FoodiML-SpanishSample.ipynb │ └── README.md ├── gan │ ├── LICENSE │ ├── LICENSE-NVIDIA │ ├── README-foodi-ml.md │ ├── README.md │ ├── environment.yml │ └── src │ │ ├── configs │ │ ├── My_dataset.json │ │ └── TINY_ILSVRC2012 │ │ │ ├── ProjGAN.json │ │ │ └── SAGAN.json │ │ ├── data_utils │ │ ├── load_dataset.py │ │ └── our_datasets.py │ │ ├── inception_tf13.py │ │ ├── loader.py │ │ ├── main.py │ │ ├── metrics │ │ ├── Accuracy.py │ │ ├── FID.py │ │ ├── F_beta.py │ │ ├── IS.py │ │ ├── inception_network.py │ │ └── prepare_inception_moments.py │ │ ├── models │ │ ├── big_resnet.py │ │ ├── big_resnet_deep.py │ │ ├── dcgan.py │ │ ├── resnet.py │ │ └── txt_cond_resnet.py │ │ ├── sync_batchnorm │ │ ├── batchnorm.py │ │ ├── batchnorm_reimpl.py │ │ ├── comm.py │ │ ├── replicate.py │ │ └── unittest.py │ │ ├── utils │ │ ├── ada.py │ │ ├── ada_op │ │ │ ├── __init__.py │ │ │ ├── fused_act.py │ │ │ ├── fused_bias_act.cpp │ │ │ ├── fused_bias_act_kernel.cu │ │ │ ├── upfirdn2d.cpp │ │ │ ├── upfirdn2d.py │ │ │ └── upfirdn2d_kernel.cu │ │ ├── biggan_utils.py │ │ ├── cr_diff_aug.py │ │ ├── diff_aug.py │ │ ├── load_checkpoint.py │ │ ├── log.py │ │ ├── losses.py │ │ ├── make_hdf5.py │ │ ├── misc.py │ │ ├── model_ops.py │ │ └── sample.py │ │ └── worker.py └── wit │ ├── README.md │ ├── dataset_class.py │ ├── evaluate_network_bigdata.py │ ├── evaluator.py │ ├── network.py │ ├── requirements.txt │ ├── train_network.py │ └── trainer.py ├── imgs ├── Glovo_logo.png └── grid_img.png ├── notebooks └── FooDI-ML Dataset Stats Analytics.ipynb └── scripts ├── dataset_preprocess.py ├── hash_images.py └── rename_images.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmark_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/benchmark_preprocess.py -------------------------------------------------------------------------------- /benchmarks/clip/CLIP-MultiLingual-FoodiML-SpanishSample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/clip/CLIP-MultiLingual-FoodiML-SpanishSample.ipynb -------------------------------------------------------------------------------- /benchmarks/clip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/clip/README.md -------------------------------------------------------------------------------- /benchmarks/gan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/LICENSE -------------------------------------------------------------------------------- /benchmarks/gan/LICENSE-NVIDIA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/LICENSE-NVIDIA -------------------------------------------------------------------------------- /benchmarks/gan/README-foodi-ml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/README-foodi-ml.md -------------------------------------------------------------------------------- /benchmarks/gan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/README.md -------------------------------------------------------------------------------- /benchmarks/gan/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/environment.yml -------------------------------------------------------------------------------- /benchmarks/gan/src/configs/My_dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/configs/My_dataset.json -------------------------------------------------------------------------------- /benchmarks/gan/src/configs/TINY_ILSVRC2012/ProjGAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/configs/TINY_ILSVRC2012/ProjGAN.json -------------------------------------------------------------------------------- /benchmarks/gan/src/configs/TINY_ILSVRC2012/SAGAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/configs/TINY_ILSVRC2012/SAGAN.json -------------------------------------------------------------------------------- /benchmarks/gan/src/data_utils/load_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/data_utils/load_dataset.py -------------------------------------------------------------------------------- /benchmarks/gan/src/data_utils/our_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/data_utils/our_datasets.py -------------------------------------------------------------------------------- /benchmarks/gan/src/inception_tf13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/inception_tf13.py -------------------------------------------------------------------------------- /benchmarks/gan/src/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/loader.py -------------------------------------------------------------------------------- /benchmarks/gan/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/main.py -------------------------------------------------------------------------------- /benchmarks/gan/src/metrics/Accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/metrics/Accuracy.py -------------------------------------------------------------------------------- /benchmarks/gan/src/metrics/FID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/metrics/FID.py -------------------------------------------------------------------------------- /benchmarks/gan/src/metrics/F_beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/metrics/F_beta.py -------------------------------------------------------------------------------- /benchmarks/gan/src/metrics/IS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/metrics/IS.py -------------------------------------------------------------------------------- /benchmarks/gan/src/metrics/inception_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/metrics/inception_network.py -------------------------------------------------------------------------------- /benchmarks/gan/src/metrics/prepare_inception_moments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/metrics/prepare_inception_moments.py -------------------------------------------------------------------------------- /benchmarks/gan/src/models/big_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/models/big_resnet.py -------------------------------------------------------------------------------- /benchmarks/gan/src/models/big_resnet_deep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/models/big_resnet_deep.py -------------------------------------------------------------------------------- /benchmarks/gan/src/models/dcgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/models/dcgan.py -------------------------------------------------------------------------------- /benchmarks/gan/src/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/models/resnet.py -------------------------------------------------------------------------------- /benchmarks/gan/src/models/txt_cond_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/models/txt_cond_resnet.py -------------------------------------------------------------------------------- /benchmarks/gan/src/sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /benchmarks/gan/src/sync_batchnorm/batchnorm_reimpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/sync_batchnorm/batchnorm_reimpl.py -------------------------------------------------------------------------------- /benchmarks/gan/src/sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /benchmarks/gan/src/sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /benchmarks/gan/src/sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/ada.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/ada.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/ada_op/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/ada_op/__init__.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/ada_op/fused_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/ada_op/fused_act.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/ada_op/fused_bias_act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/ada_op/fused_bias_act.cpp -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/ada_op/fused_bias_act_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/ada_op/fused_bias_act_kernel.cu -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/ada_op/upfirdn2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/ada_op/upfirdn2d.cpp -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/ada_op/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/ada_op/upfirdn2d.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/ada_op/upfirdn2d_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/ada_op/upfirdn2d_kernel.cu -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/biggan_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/biggan_utils.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/cr_diff_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/cr_diff_aug.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/diff_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/diff_aug.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/load_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/load_checkpoint.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/log.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/losses.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/make_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/make_hdf5.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/misc.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/model_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/model_ops.py -------------------------------------------------------------------------------- /benchmarks/gan/src/utils/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/utils/sample.py -------------------------------------------------------------------------------- /benchmarks/gan/src/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/gan/src/worker.py -------------------------------------------------------------------------------- /benchmarks/wit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/wit/README.md -------------------------------------------------------------------------------- /benchmarks/wit/dataset_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/wit/dataset_class.py -------------------------------------------------------------------------------- /benchmarks/wit/evaluate_network_bigdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/wit/evaluate_network_bigdata.py -------------------------------------------------------------------------------- /benchmarks/wit/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/wit/evaluator.py -------------------------------------------------------------------------------- /benchmarks/wit/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/wit/network.py -------------------------------------------------------------------------------- /benchmarks/wit/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/wit/requirements.txt -------------------------------------------------------------------------------- /benchmarks/wit/train_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/wit/train_network.py -------------------------------------------------------------------------------- /benchmarks/wit/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/benchmarks/wit/trainer.py -------------------------------------------------------------------------------- /imgs/Glovo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/imgs/Glovo_logo.png -------------------------------------------------------------------------------- /imgs/grid_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/imgs/grid_img.png -------------------------------------------------------------------------------- /notebooks/FooDI-ML Dataset Stats Analytics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/notebooks/FooDI-ML Dataset Stats Analytics.ipynb -------------------------------------------------------------------------------- /scripts/dataset_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/scripts/dataset_preprocess.py -------------------------------------------------------------------------------- /scripts/hash_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/scripts/hash_images.py -------------------------------------------------------------------------------- /scripts/rename_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glovo/foodi-ml-dataset/HEAD/scripts/rename_images.py --------------------------------------------------------------------------------