Skip to content

Commit 83551a5

Browse files
authored
Initial commit
1 parent 3606050 commit 83551a5

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

Diff for: README.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Create-your-own-Image-Classifier
2+
This is the final project of AI Programming with Python Nanodegree program by Udacity
3+
4+
# Developing an AI application
5+
6+
Going forward, AI algorithms will be incorporated into more and more everyday applications. For example, you might want to include an image classifier in a smart phone app. To do this, you'd use a deep learning model trained on hundreds of thousands of images as part of the overall application architecture. A large part of software development in the future will be using these types of models as common parts of applications.
7+
8+
In this project, you'll train an image classifier to recognize different species of flowers. You can imagine using something like this in a phone app that tells you the name of the flower your camera is looking at. In practice you'd train this classifier, then export it for use in your application. We'll be using [this dataset](http://www.robots.ox.ac.uk/~vgg/data/flowers/102/index.html) of 102 flower categories.
9+
10+
<b>The project is broken down into multiple steps:</b>
11+
12+
* Load and preprocess the image dataset
13+
* Train the image classifier on your dataset
14+
* Use the trained classifier to predict image content
15+
16+
<b>The project contains 3 types of source files:</b>
17+
18+
* html source file (Image Classifier Project.html)
19+
20+
* jupyter source file (Image Classifier Project.ipynb)
21+
22+
* python source file (util.py, train.py, predict.py)
23+
24+
<b>Verified Certification:</b>
25+
26+
You can check the certificate in the folder (Udacity_Certificate.pdf)
27+
28+
<b>Packages:</b>
29+
30+
As you go through the jupyter source file(jupyternotebook) you will find what you need to import, make sure to import the Packages.
31+

0 commit comments

Comments
 (0)