├── .gitignore ├── LICENSE ├── README.md ├── asteroid_detection ├── README.md ├── dashboards │ └── asteroid.json ├── data │ ├── database.py │ └── nasa.csv ├── demo │ ├── inference.ipynb │ └── inference.py ├── get_data.py ├── global_config.py ├── images │ ├── alert.png │ ├── dashboard.png │ ├── diagram.png │ └── pipeline.png ├── model_training.py ├── pipeline.py ├── preprocess_data.py ├── preprocess_serving.py └── requirements.txt ├── how_much_data_do_you_really_need ├── README.md ├── category_prevalence.py ├── create_subsets.py ├── predict_diminishing_returns.ipynb └── utils.py ├── once_upon_a_repository ├── README.md ├── engines.py ├── inference_with_model.py ├── requirements.txt ├── torchvision_references │ ├── coco_eval.py │ ├── coco_utils.py │ └── utils.py ├── train_model.py ├── transforms.py └── utilities.py ├── setting_up_allegroai_platform ├── pytorch.mnist_trains.py └── requirements.txt ├── the_hero_rises ├── README.md ├── SSD │ ├── __init__.py │ ├── box_coder.py │ ├── multibox_loss.py │ └── ssd_model.py ├── engines.py ├── inference_with_model.py ├── requirements.txt ├── torchvision_references │ ├── __init__.py │ ├── coco_eval.py │ ├── coco_utils.py │ └── utils.py ├── train_model.py ├── transforms.py └── utilities.py └── urbansounds8k ├── .gitignore ├── README.md ├── assets └── diagram.png ├── get_data.py ├── preprocessing.py ├── requirements.txt └── training.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/README.md -------------------------------------------------------------------------------- /asteroid_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/README.md -------------------------------------------------------------------------------- /asteroid_detection/dashboards/asteroid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/dashboards/asteroid.json -------------------------------------------------------------------------------- /asteroid_detection/data/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/data/database.py -------------------------------------------------------------------------------- /asteroid_detection/data/nasa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/data/nasa.csv -------------------------------------------------------------------------------- /asteroid_detection/demo/inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/demo/inference.ipynb -------------------------------------------------------------------------------- /asteroid_detection/demo/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/demo/inference.py -------------------------------------------------------------------------------- /asteroid_detection/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/get_data.py -------------------------------------------------------------------------------- /asteroid_detection/global_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/global_config.py -------------------------------------------------------------------------------- /asteroid_detection/images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/images/alert.png -------------------------------------------------------------------------------- /asteroid_detection/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/images/dashboard.png -------------------------------------------------------------------------------- /asteroid_detection/images/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/images/diagram.png -------------------------------------------------------------------------------- /asteroid_detection/images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/images/pipeline.png -------------------------------------------------------------------------------- /asteroid_detection/model_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/model_training.py -------------------------------------------------------------------------------- /asteroid_detection/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/pipeline.py -------------------------------------------------------------------------------- /asteroid_detection/preprocess_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/preprocess_data.py -------------------------------------------------------------------------------- /asteroid_detection/preprocess_serving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/preprocess_serving.py -------------------------------------------------------------------------------- /asteroid_detection/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/asteroid_detection/requirements.txt -------------------------------------------------------------------------------- /how_much_data_do_you_really_need/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/how_much_data_do_you_really_need/README.md -------------------------------------------------------------------------------- /how_much_data_do_you_really_need/category_prevalence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/how_much_data_do_you_really_need/category_prevalence.py -------------------------------------------------------------------------------- /how_much_data_do_you_really_need/create_subsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/how_much_data_do_you_really_need/create_subsets.py -------------------------------------------------------------------------------- /how_much_data_do_you_really_need/predict_diminishing_returns.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/how_much_data_do_you_really_need/predict_diminishing_returns.ipynb -------------------------------------------------------------------------------- /how_much_data_do_you_really_need/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/how_much_data_do_you_really_need/utils.py -------------------------------------------------------------------------------- /once_upon_a_repository/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/once_upon_a_repository/README.md -------------------------------------------------------------------------------- /once_upon_a_repository/engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/once_upon_a_repository/engines.py -------------------------------------------------------------------------------- /once_upon_a_repository/inference_with_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/once_upon_a_repository/inference_with_model.py -------------------------------------------------------------------------------- /once_upon_a_repository/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/once_upon_a_repository/requirements.txt -------------------------------------------------------------------------------- /once_upon_a_repository/torchvision_references/coco_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/once_upon_a_repository/torchvision_references/coco_eval.py -------------------------------------------------------------------------------- /once_upon_a_repository/torchvision_references/coco_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/once_upon_a_repository/torchvision_references/coco_utils.py -------------------------------------------------------------------------------- /once_upon_a_repository/torchvision_references/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/once_upon_a_repository/torchvision_references/utils.py -------------------------------------------------------------------------------- /once_upon_a_repository/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/once_upon_a_repository/train_model.py -------------------------------------------------------------------------------- /once_upon_a_repository/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/once_upon_a_repository/transforms.py -------------------------------------------------------------------------------- /once_upon_a_repository/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/once_upon_a_repository/utilities.py -------------------------------------------------------------------------------- /setting_up_allegroai_platform/pytorch.mnist_trains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/setting_up_allegroai_platform/pytorch.mnist_trains.py -------------------------------------------------------------------------------- /setting_up_allegroai_platform/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/setting_up_allegroai_platform/requirements.txt -------------------------------------------------------------------------------- /the_hero_rises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/README.md -------------------------------------------------------------------------------- /the_hero_rises/SSD/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /the_hero_rises/SSD/box_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/SSD/box_coder.py -------------------------------------------------------------------------------- /the_hero_rises/SSD/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/SSD/multibox_loss.py -------------------------------------------------------------------------------- /the_hero_rises/SSD/ssd_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/SSD/ssd_model.py -------------------------------------------------------------------------------- /the_hero_rises/engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/engines.py -------------------------------------------------------------------------------- /the_hero_rises/inference_with_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/inference_with_model.py -------------------------------------------------------------------------------- /the_hero_rises/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/requirements.txt -------------------------------------------------------------------------------- /the_hero_rises/torchvision_references/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /the_hero_rises/torchvision_references/coco_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/torchvision_references/coco_eval.py -------------------------------------------------------------------------------- /the_hero_rises/torchvision_references/coco_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/torchvision_references/coco_utils.py -------------------------------------------------------------------------------- /the_hero_rises/torchvision_references/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/torchvision_references/utils.py -------------------------------------------------------------------------------- /the_hero_rises/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/train_model.py -------------------------------------------------------------------------------- /the_hero_rises/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/transforms.py -------------------------------------------------------------------------------- /the_hero_rises/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/the_hero_rises/utilities.py -------------------------------------------------------------------------------- /urbansounds8k/.gitignore: -------------------------------------------------------------------------------- 1 | tensorboard_logs 2 | .venv 3 | dataset 4 | .idea -------------------------------------------------------------------------------- /urbansounds8k/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/urbansounds8k/README.md -------------------------------------------------------------------------------- /urbansounds8k/assets/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/urbansounds8k/assets/diagram.png -------------------------------------------------------------------------------- /urbansounds8k/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/urbansounds8k/get_data.py -------------------------------------------------------------------------------- /urbansounds8k/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/urbansounds8k/preprocessing.py -------------------------------------------------------------------------------- /urbansounds8k/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/urbansounds8k/requirements.txt -------------------------------------------------------------------------------- /urbansounds8k/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearml/clearml-blogs/HEAD/urbansounds8k/training.py --------------------------------------------------------------------------------