Skip to content

Commit 4e4ac04

Browse files
authored
Merge pull request #1 from IdlessChaye/master
new version alexnet model scripts
2 parents 4039c0a + 3e9c7df commit 4e4ac04

7 files changed

+419
-397
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
test/
55
tmp/
66
train/
7+
validate/

README.md

+46-11
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,65 @@
11
# 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).
44
> We built this AlexNet in Windows , it's very convenient for most of you to train the net.
55
66
## Requirements
77
* Python 3.5
8-
* TensorFlow 1.0
8+
* TensorFlow 1.8.0
99
* Numpy
1010
* cat and dog images [here](https://www.kaggle.com/c/dogs-vs-cats-redux-kernels-edition/data)
1111

1212
## 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.
1414

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
1823

19-
/path/to/train/image2.png 1
24+
/path/to/train/dog/dog_2.jpg
2025

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+
2232

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+
2458

2559
## Notes:
2660
* 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.
2863

2964
## Example output:
3065
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

Comments
 (0)