Welcome to the ML-PaperImplementations repository! This is a collection of machine learning paper implementations, intended as a resource for researchers, students, and enthusiasts in the field.
- alexnet - ImageNet Classification with Deep Convolutional Neural Networks (NIPS 2012)
- vae - Auto-Encoding Variational Bayes (ICLR 2014)
- gan - Generative Adversarial Networks (NIPS 2014)
- u-net - U-Net: Convolutional Networks for Biomedical Image Segmentation (MICCAI 2015)
- neural-style-transfer - A Neural Algorithm of Artistic Style (arXiv 2015)
- resnet - Deep Residual Learning for Image Recognition (CVPR 2016)
Each paper implementation is contained in its own directory within the repository. To run a particular implementation, navigate to the corresponding directory and follow the instructions provided in the README.md file for that implementation.
To set up a development environment to run the code, please follow these steps:
- Clone the repository:
git clone https://github.com/emirhanboge/CV-Paper-Implementations.git- Navigate to the project directory:
cd CV-Paper-Implementations- Create a virtual environment:
python -m venv venv- Activate the virtual environment:
source venv/bin/activate- Upgrade pip:
pip install --upgrade pip- Install the required packages:
pip install -r requirements.txt