|
1 | 1 | # tensorflow_alexnet_classify
|
2 |
| -> This repository aims to implement a alexnet with tensorflow . it gives a pretrain weight (bvlc_alexnet.npy), you can download from |
3 |
| -[here](http://www.cs.toronto.edu/~guerzhoy/tf_alexnet/).the train file contains 25000 images (cat and dog). |
| 2 | +> This repository aims to implement a alexnet with tensorflow. |
| 3 | +> The train file contains 25000 images (cat and dog). |
4 | 4 | > We built this AlexNet in Windows , it's very convenient for most of you to train the net.
|
5 | 5 |
|
6 | 6 | ## Requirements
|
7 | 7 | * Python 3.5
|
8 |
| -* TensorFlow 1.0 |
| 8 | +* TensorFlow 1.8.0 |
9 | 9 | * Numpy
|
10 | 10 | * cat and dog images [here](https://www.kaggle.com/c/dogs-vs-cats-redux-kernels-edition/data)
|
11 | 11 |
|
12 | 12 | ## Usage
|
13 |
| -* image_generator: it can generate imageurl from your image file. |
| 13 | +1' Make sure that you have already changed file directory to the right format. |
14 | 14 |
|
15 |
| - **example:** |
16 |
| - |
17 |
| - /path/to/train/image1.png 0 |
| 15 | +**example:** |
| 16 | + |
| 17 | + |
| 18 | + /path/to/train/cat/cat_1.jpg |
| 19 | + |
| 20 | + /path/to/train/cat/cat_2.jpg |
| 21 | + |
| 22 | + /path/to/train/dog/dog_1.jpg |
18 | 23 |
|
19 |
| - /path/to/train/image2.png 1 |
| 24 | + /path/to/train/dog/dog_2.jpg |
20 | 25 |
|
21 |
| - /path/to/train/image3.png 2 |
| 26 | + /path/to/test/cat/cat_1.jpg |
| 27 | + |
| 28 | + /path/to/test/dog/dog_1.jpg |
| 29 | + |
| 30 | + |
| 31 | + |
22 | 32 |
|
23 |
| - /path/to/train/image4.png 0 |
| 33 | +2' Modify parameters of the beginning of main function in the main_alexnet.py file. |
| 34 | + |
| 35 | +**example:** |
| 36 | + |
| 37 | + |
| 38 | + learning_rate = 1e-3 |
| 39 | + num_epochs = 17 |
| 40 | + train_batch_size = 1000 |
| 41 | + test_batch_size = 100 |
| 42 | + dropout_rate = 0.5 |
| 43 | + num_classes = 2 |
| 44 | + display_step = 2 |
| 45 | + |
| 46 | + filewriter_path = "./tmp/tensorboard" |
| 47 | + checkpoint_path = "./tmp/checkpoints" |
| 48 | + |
| 49 | + image_format = 'jpg' |
| 50 | + file_name_of_class = ['cat', |
| 51 | + 'dog'] |
| 52 | + train_dataset_paths = ['G:/Lab/Data_sets/catanddog/train/cat/', |
| 53 | + 'G:/Lab/Data_sets/catanddog/train/dog/'] |
| 54 | + test_dataset_paths = ['G:/Lab/Data_sets/catanddog/test/cat/', |
| 55 | + 'G:/Lab/Data_sets/catanddog/test/dog/'] |
| 56 | + |
| 57 | + |
24 | 58 |
|
25 | 59 | ## Notes:
|
26 | 60 | * The alexnet.py and datagenerator.py files have been builded, you don't have to modify it. But if you have more concise or effective codes, please do share them with us.
|
27 |
| -* finetune.py is aimed to tune the weights and bias in the full connected layer, you must define some varibles,functions,and class numbers according to your own classification projects. |
| 61 | +* The main_alexnet.py is aimed to tune the weights and bias in the alexnet. |
| 62 | +* This model is easily transfered into a multi-class classification model. All you need to do is modifying parameters of the beginning of main function in the main_alexnet.py file. |
28 | 63 |
|
29 | 64 | ## Example output:
|
30 | 65 | We choosed ten pictures from the internet to validate the AlexNet, there were three being misidentified, the accuracy is about 70%, which is similar to the accuracy we tested before. But, On the whole, the AlexNet is not as good as we expected, the reason may have something to do with the datesets. If you have more than One hundred thousand dataset, the accuracy must be better than we trained.
|
|
0 commit comments