-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mnist demo #162
Merged
Merged
Mnist demo #162
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,6 @@ build/ | |
*.user | ||
|
||
.vscode | ||
.idea | ||
.idea | ||
.project | ||
.pydevproject |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
data/raw_data | ||
data/*.list | ||
mnist_vgg_model | ||
plot.png | ||
train.log | ||
*pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Copyright (c) 2016 Baidu, Inc. All Rights Reserved | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
o = open("./" + "train.list", "w") | ||
o.write("./data/raw_data/train" +"\n") | ||
o.close() | ||
|
||
o = open("./" + "test.list", "w") | ||
o.write("./data/raw_data/t10k" +"\n") | ||
o.close() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env sh | ||
# This scripts downloads the mnist data and unzips it. | ||
|
||
DIR="$( cd "$(dirname "$0")" ; pwd -P )" | ||
rm -rf "$DIR/raw_data" | ||
mkdir "$DIR/raw_data" | ||
cd "$DIR/raw_data" | ||
|
||
echo "Downloading..." | ||
|
||
for fname in train-images-idx3-ubyte train-labels-idx1-ubyte t10k-images-idx3-ubyte t10k-labels-idx1-ubyte | ||
do | ||
if [ ! -e $fname ]; then | ||
wget --no-check-certificate http://yann.lecun.com/exdb/mnist/${fname}.gz | ||
gunzip ${fname}.gz | ||
fi | ||
done | ||
|
||
cd $DIR | ||
rm -f *.list | ||
python generate_list.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
from paddle.trainer.PyDataProvider2 import * | ||
|
||
|
||
# Define a py data provider | ||
@provider(input_types=[ | ||
dense_vector(28 * 28), | ||
integer_value(10) | ||
]) | ||
def process(settings, filename): # settings is not used currently. | ||
imgf = filename + "-images-idx3-ubyte" | ||
labelf = filename + "-labels-idx1-ubyte" | ||
f = open(imgf, "rb") | ||
l = open(labelf, "rb") | ||
|
||
f.read(16) | ||
l.read(8) | ||
|
||
# Define number of samples for train/test | ||
if "train" in filename: | ||
n = 60000 | ||
else: | ||
n = 10000 | ||
|
||
for i in range(n): | ||
label = ord(l.read(1)) | ||
pixels = [] | ||
for j in range(28*28): | ||
pixels.append(float(ord(f.read(1)))) | ||
yield { "pixel": pixels, 'label': label } | ||
|
||
f.close() | ||
l.close() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2016 Baidu, Inc. All Rights Reserved | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
set -e | ||
config=vgg_16_mnist.py | ||
output=./mnist_vgg_model | ||
log=train.log | ||
|
||
paddle train \ | ||
--config=$config \ | ||
--dot_period=10 \ | ||
--log_period=100 \ | ||
--test_all_data_in_one_period=1 \ | ||
--use_gpu=1 \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should use |
||
--trainer_count=1 \ | ||
--num_passes=100 \ | ||
--save_dir=$output \ | ||
2>&1 | tee $log | ||
|
||
python -m paddle.utils.plotcurve -i $log > plot.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright (c) 2016 Baidu, Inc. All Rights Reserved | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from paddle.trainer_config_helpers import * | ||
|
||
is_predict = get_config_arg("is_predict", bool, False) | ||
|
||
####################Data Configuration ################## | ||
|
||
|
||
if not is_predict: | ||
data_dir='./data/' | ||
define_py_data_sources2(train_list= data_dir + 'train.list', | ||
test_list= data_dir + 'test.list', | ||
module='mnist_provider', | ||
obj='process') | ||
|
||
######################Algorithm Configuration ############# | ||
settings( | ||
batch_size = 128, | ||
learning_rate = 0.1 / 128.0, | ||
learning_method = MomentumOptimizer(0.9), | ||
regularization = L2Regularization(0.0005 * 128) | ||
) | ||
|
||
#######################Network Configuration ############# | ||
|
||
data_size=1*28*28 | ||
label_size=10 | ||
img = data_layer(name='pixel', size=data_size) | ||
|
||
# small_vgg is predined in trainer_config_helpers.network | ||
predict = small_vgg(input_image=img, | ||
num_channels=1, | ||
num_classes=label_size) | ||
|
||
if not is_predict: | ||
lbl = data_layer(name="label", size=label_size) | ||
outputs(classification_cost(input=predict, label=lbl)) | ||
else: | ||
outputs(predict) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here, we should use
pixels.append(float(ord(f.read(1)))/255.0)
to normalizepixels
to float variable in range[0.0, 1.0]
.