Skip to content

Solution of computer vision problems using deep learning in pytorch

Notifications You must be signed in to change notification settings

hkishn/deeplearning-projects

Repository files navigation

Deeplearning-projects

In this repository, you can overview different projects using state of the art deep learning algorithms.
The projects covered are as follows :
1.Dog breed classifier using convolutional neural networks (CNN )
2.Fake face generation using generative adversial networks (GAN)
3.Deployment of deep learning model using Amazon's SageMaker service
4.Image segmentation using Unet architecture

1. Installation

Download Anaconda

Linux Mac Windows
64-bit 64-bit (bash installer) 64-bit (bash installer) 64-bit (exe installer)
32-bit 32-bit (bash installer) 32-bit (exe installer)

Install Anaconda on your machine. Detailed instructions:

2. Create and Activate the Environment

Please go though this doc before you creating an environment. After that create a environment using following command

conda create --name deep-learning

Then activate the environment using following command

activate deep-learning

Git and version control

These instructions also assume you have git installed for working with Github from a terminal window, but if you do not, you can download that first with the command:

conda install git

Now, you can create a local version of the project

  1. Clone the repository, and navigate to the subfolder of the different projects .This may take a minute or two to clone due to the included image data.
git clone https://github.com/hkishn/deeplearning-projects
cd deeplearning-projects

  1. Install PyTorch and torchvision; this should install the latest version of PyTorch.

    • Linux or Mac:
    conda install pytorch torchvision -c pytorch 
    
    • Windows:
    conda install pytorch -c pytorch
    pip install torchvision
    
  2. Install a few required pip packages, which are specified in the requirements text file (including OpenCV).

pip install -r requirements.txt
  1. That's it!, Now run the project using following command, check you default browser and open dlnd_face_generation.ipynb file
jupyter notebook

About

Solution of computer vision problems using deep learning in pytorch

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published