All Projects → cezannec → intro-computervision

cezannec / intro-computervision

Licence: other
Notebooks for learning about the layers of a convolutional neural network.

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to intro-computervision

Captcha break
验证码识别
Stars: ✭ 2,268 (+5054.55%)
Mutual labels:  pytorch-tutorial
Pytorch Sentiment Analysis
Tutorials on getting started with PyTorch and TorchText for sentiment analysis.
Stars: ✭ 3,209 (+7193.18%)
Mutual labels:  pytorch-tutorial
deep-blueberry
If you've always wanted to learn about deep-learning but don't know where to start, then you might have stumbled upon the right place!
Stars: ✭ 17 (-61.36%)
Mutual labels:  pytorch-tutorial
Yolo v3 tutorial from scratch
Accompanying code for Paperspace tutorial series "How to Implement YOLO v3 Object Detector from Scratch"
Stars: ✭ 2,192 (+4881.82%)
Mutual labels:  pytorch-tutorial
Pytorch1.0 Cn
PyTorch 1.0 官方文档 中文版,欢迎关注微信公众号:磐创AI
Stars: ✭ 215 (+388.64%)
Mutual labels:  pytorch-tutorial
pytorch-accelerated
A lightweight library designed to accelerate the process of training PyTorch models by providing a minimal, but extensible training loop which is flexible enough to handle the majority of use cases, and capable of utilizing different hardware options with no code changes required. Docs: https://pytorch-accelerated.readthedocs.io/en/latest/
Stars: ✭ 125 (+184.09%)
Mutual labels:  pytorch-tutorial
A Pytorch Tutorial To Object Detection
SSD: Single Shot MultiBox Detector | a PyTorch Tutorial to Object Detection
Stars: ✭ 2,398 (+5350%)
Mutual labels:  pytorch-tutorial
Receptive-Field-in-Pytorch
Numerical Computation of Receptive Field in Pytorch
Stars: ✭ 57 (+29.55%)
Mutual labels:  pytorch-tutorial
Book deeplearning in pytorch source
Stars: ✭ 236 (+436.36%)
Mutual labels:  pytorch-tutorial
Duke-NLP-WS-2020
Duke Natural Language Processing Winter School 2020
Stars: ✭ 22 (-50%)
Mutual labels:  pytorch-tutorial
Code Of Learn Deep Learning With Pytorch
This is code of book "Learn Deep Learning with PyTorch"
Stars: ✭ 2,262 (+5040.91%)
Mutual labels:  pytorch-tutorial
Pytorch Beginner
pytorch tutorial for beginners
Stars: ✭ 2,603 (+5815.91%)
Mutual labels:  pytorch-tutorial
mrnet
Building an ACL tear detector to spot knee injuries from MRIs with PyTorch (MRNet)
Stars: ✭ 98 (+122.73%)
Mutual labels:  pytorch-tutorial
Pytorch Playground
Base pretrained models and datasets in pytorch (MNIST, SVHN, CIFAR10, CIFAR100, STL10, AlexNet, VGG16, VGG19, ResNet, Inception, SqueezeNet)
Stars: ✭ 2,201 (+4902.27%)
Mutual labels:  pytorch-tutorial
cnn-visualization-keras-tf2
Filter visualization, Feature map visualization, Guided Backprop, GradCAM, Guided-GradCAM, Deep Dream
Stars: ✭ 21 (-52.27%)
Mutual labels:  feature-visualization
Dive Into Dl Pytorch
本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。
Stars: ✭ 14,234 (+32250%)
Mutual labels:  pytorch-tutorial
Pytorch Seq2seq
Tutorials on implementing a few sequence-to-sequence (seq2seq) models with PyTorch and TorchText.
Stars: ✭ 3,418 (+7668.18%)
Mutual labels:  pytorch-tutorial
Pytorch-conditional-GANs
Implementation of Conditional Generative Adversarial Networks in PyTorch
Stars: ✭ 91 (+106.82%)
Mutual labels:  pytorch-tutorial
deep-dream-pytorch
Pytorch implementation of DeepDream on VGG16 Network
Stars: ✭ 46 (+4.55%)
Mutual labels:  pytorch-tutorial
Text-Classification-LSTMs-PyTorch
The aim of this repository is to show a baseline model for text classification by implementing a LSTM-based model coded in PyTorch. In order to provide a better understanding of the model, it will be used a Tweets dataset provided by Kaggle.
Stars: ✭ 45 (+2.27%)
Mutual labels:  pytorch-tutorial

Introduction to Computer Vision

This repository contains notebooks for learning about how convolutional neural networks (CNN's) can be used to create an image classifier given a set of training data. The notebooks include examples that are meant for learning about the individual layers that make up a convolutional neural network, and an example clothing classifier that is trained on the FashionMNIST dataset.

CNN Layers


Setting up Your Own Environment

These notebooks depend on a number of software packages to run, and if you want (on your own time), you can create a local environment with these dependencies by following the instructions below.

Configure and Manage Your Environment with Anaconda

Per the Anaconda docs:

Conda is an open source package management system and environment management system for installing multiple versions of software packages and their dependencies and switching easily between them. It works on Linux, OS X and Windows, and was created for Python programs but can package and distribute any software.

Overview

Using Anaconda consists of the following:

  1. Install miniconda on your computer, by selecting the latest Python version for your operating system. If you already have conda or miniconda installed, you should be able to skip this step and move on to step 2.
  2. Create and activate * a new conda environment.

* Each time you wish to work on any exercises, activate your conda environment!


1. Installation

Download the latest version of miniconda that matches your system.

NOTE: There have been reports of issues creating an environment using miniconda v4.3.13. If it gives you issues try versions 4.3.11 or 4.2.12 from here.

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 miniconda on your machine. Detailed instructions:

2. Create and Activate the Environment

For Windows users, these following commands need to be executed from the Anaconda prompt as opposed to a Windows terminal window. For Mac, a normal terminal window will work.

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

If you'd like to learn more about version control and using git from the command line, take a look at our free course: Version Control with Git.

Now, we're ready to create our local environment!

  1. Clone the repository, and navigate to the downloaded folder. This may take a minute or two to clone due to the included image data.
git clone https://github.com/cezannec/intro-computervision.git
cd intro-computervision
  1. Create (and activate) a new environment, named cv-env with Python 3.6. If prompted to proceed with the install (Proceed [y]/n) type y.

    • Linux or Mac:
    conda create -n cv-env python=3.6
    source activate cv-env
    
    • Windows:
    conda create --name cv-env python=3.6
    activate cv-env
    

    At this point your command line should look something like: (cv-env) <User>:intro-computervision <user>$. The (cv-env) indicates that your environment has been activated, and you can proceed with further package installations.

  2. 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-cpu -c pytorch
    pip install torchvision
    
  3. 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 all of the cv-env libraries are available to you. Assuming you're environment is still activated, you can navigate to the Exercises repo and start looking at the notebooks:

cd
cd intro-computervision
jupyter notebook

To exit the environment when you have completed your work session, simply close the terminal window.

Notes on environment creation and deletion

Verify that the cv-env environment was created in your environments:

conda info --envs

Cleanup downloaded libraries (remove tarballs, zip files, etc):

conda clean -tp

Uninstall the environment (if you want); you can remove it by name:

conda env remove -n cv-env
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].