├── .editorconfig ├── .gitignore ├── DCGAN_pytorch ├── README.md ├── recourses │ ├── 1_epoch.png │ └── paper_figure.png └── src │ ├── model.py │ └── train.py ├── LICENSE ├── README.md ├── cnn_architectures ├── README.md ├── resources │ └── vgg_architectures.png └── vgg16.py ├── neural_style_transfer ├── README.md ├── content_images │ ├── alisha.jpg │ ├── los_angeles.jpg │ ├── los_angeles_night.jpg │ └── snow.jpg ├── generated_images │ ├── alisha_1.png │ ├── alisha_2.png │ ├── gen_1000.png │ ├── generated_1000.png │ ├── generated_1500.png │ ├── generated_200.png │ ├── generated_2000.png │ ├── generated_600.png │ └── snow_1.png ├── nst.py ├── readme_results │ ├── result_1.png │ └── result_2.png └── style_images │ ├── dog_abstract_style.jpg │ └── starry_night_full.jpg ├── object_detection ├── README.md ├── object_localization │ ├── README.md │ ├── pet_localization.ipynb │ └── readme_resources │ │ ├── result_1.png │ │ ├── result_2.png │ │ ├── result_3.png │ │ └── result_4.png └── yolo │ └── model.py ├── poetry.lock ├── pyproject.toml └── transfer_learning ├── README.md └── transfer_learn.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/.gitignore -------------------------------------------------------------------------------- /DCGAN_pytorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/DCGAN_pytorch/README.md -------------------------------------------------------------------------------- /DCGAN_pytorch/recourses/1_epoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/DCGAN_pytorch/recourses/1_epoch.png -------------------------------------------------------------------------------- /DCGAN_pytorch/recourses/paper_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/DCGAN_pytorch/recourses/paper_figure.png -------------------------------------------------------------------------------- /DCGAN_pytorch/src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/DCGAN_pytorch/src/model.py -------------------------------------------------------------------------------- /DCGAN_pytorch/src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/DCGAN_pytorch/src/train.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/README.md -------------------------------------------------------------------------------- /cnn_architectures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/cnn_architectures/README.md -------------------------------------------------------------------------------- /cnn_architectures/resources/vgg_architectures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/cnn_architectures/resources/vgg_architectures.png -------------------------------------------------------------------------------- /cnn_architectures/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/cnn_architectures/vgg16.py -------------------------------------------------------------------------------- /neural_style_transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/README.md -------------------------------------------------------------------------------- /neural_style_transfer/content_images/alisha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/content_images/alisha.jpg -------------------------------------------------------------------------------- /neural_style_transfer/content_images/los_angeles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/content_images/los_angeles.jpg -------------------------------------------------------------------------------- /neural_style_transfer/content_images/los_angeles_night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/content_images/los_angeles_night.jpg -------------------------------------------------------------------------------- /neural_style_transfer/content_images/snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/content_images/snow.jpg -------------------------------------------------------------------------------- /neural_style_transfer/generated_images/alisha_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/generated_images/alisha_1.png -------------------------------------------------------------------------------- /neural_style_transfer/generated_images/alisha_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/generated_images/alisha_2.png -------------------------------------------------------------------------------- /neural_style_transfer/generated_images/gen_1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/generated_images/gen_1000.png -------------------------------------------------------------------------------- /neural_style_transfer/generated_images/generated_1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/generated_images/generated_1000.png -------------------------------------------------------------------------------- /neural_style_transfer/generated_images/generated_1500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/generated_images/generated_1500.png -------------------------------------------------------------------------------- /neural_style_transfer/generated_images/generated_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/generated_images/generated_200.png -------------------------------------------------------------------------------- /neural_style_transfer/generated_images/generated_2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/generated_images/generated_2000.png -------------------------------------------------------------------------------- /neural_style_transfer/generated_images/generated_600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/generated_images/generated_600.png -------------------------------------------------------------------------------- /neural_style_transfer/generated_images/snow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/generated_images/snow_1.png -------------------------------------------------------------------------------- /neural_style_transfer/nst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/nst.py -------------------------------------------------------------------------------- /neural_style_transfer/readme_results/result_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/readme_results/result_1.png -------------------------------------------------------------------------------- /neural_style_transfer/readme_results/result_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/readme_results/result_2.png -------------------------------------------------------------------------------- /neural_style_transfer/style_images/dog_abstract_style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/style_images/dog_abstract_style.jpg -------------------------------------------------------------------------------- /neural_style_transfer/style_images/starry_night_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/neural_style_transfer/style_images/starry_night_full.jpg -------------------------------------------------------------------------------- /object_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/object_detection/README.md -------------------------------------------------------------------------------- /object_detection/object_localization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/object_detection/object_localization/README.md -------------------------------------------------------------------------------- /object_detection/object_localization/pet_localization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/object_detection/object_localization/pet_localization.ipynb -------------------------------------------------------------------------------- /object_detection/object_localization/readme_resources/result_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/object_detection/object_localization/readme_resources/result_1.png -------------------------------------------------------------------------------- /object_detection/object_localization/readme_resources/result_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/object_detection/object_localization/readme_resources/result_2.png -------------------------------------------------------------------------------- /object_detection/object_localization/readme_resources/result_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/object_detection/object_localization/readme_resources/result_3.png -------------------------------------------------------------------------------- /object_detection/object_localization/readme_resources/result_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/object_detection/object_localization/readme_resources/result_4.png -------------------------------------------------------------------------------- /object_detection/yolo/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/object_detection/yolo/model.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/pyproject.toml -------------------------------------------------------------------------------- /transfer_learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/transfer_learning/README.md -------------------------------------------------------------------------------- /transfer_learning/transfer_learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilhelmberghammer/MachineLearning/HEAD/transfer_learning/transfer_learn.py --------------------------------------------------------------------------------