Giter Club home page Giter Club logo

ai_app_classification_flowers_python's Introduction

Flowers Classification using PyTorch

In this project, we first develop code for an image classifier built with PyTorch, then convert it into a command line application. GPU is necessary for training the Deep Learning model.

drawing

Accomplishment:

  • Train Image Classifier Model, which uses Deep Learning Pre-trained Neural Networks (VGG/DenseNet) to train a neural network to recognize different species of flowers (dataset of 102 flower categories);

  • Python App which allows user to input some arguments in order to train and make prediction.

Local Environment Instructions

  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/nalbert9/AI_App_Classification_Flowers_Python.git
  1. Create (and activate) a new Anaconda environment

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

conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch

Examples

Command Line

Train a new network on a data set with train.py

  • Basic usage: python train.py data_directory

  • Prints out training loss, validation loss, and validation accuracy as the network trains

  • Options:

    • Set directory to save checkpoints: python train.py data_dir --save_dir save_directory
    • Choose architecture: python train.py data_dir --arch "vgg16"
    • Set hyperparameters: python train.py data_dir --learning_rate 0.01 --hidden_units 512 --epochs 20
    • Use GPU for training: python train.py data_dir --gpu
  • Predict flower name from an image with predict.py along with the probability of that name. That is, you'll pass in a single image /path/to/image and return the flower name and class probability.

  • Basic usage: python predict.py /path/to/image checkpoint

  • Options:

    • Return top K most likely classes: python predict.py --input checkpoint --top_k 3
    • Use a mapping of categories to real names: python predict.py --input checkpoint --category_names cat_to_name.json
    • Use GPU for inference: python predict.py --input checkpoint --gpu

You can imagine using something like this in a phone app that tells you the name of the flower your camera is looking at.

drawing

License

The contents of this repository are covered under the MIT License.

ai_app_classification_flowers_python's People

Contributors

nalbert9 avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.