notest_recognize_digits_conv_dist.py 3.4 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
3 4 5
# 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
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# 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.

T
typhoonzero 已提交
15 16 17 18
from __future__ import print_function
import numpy as np
import paddle.v2 as paddle
import paddle.v2.fluid as fluid
T
typhoonzero 已提交
19
import os
T
typhoonzero 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41

images = fluid.layers.data(name='pixel', shape=[1, 28, 28], dtype='float32')
label = fluid.layers.data(name='label', shape=[1], dtype='int64')
conv_pool_1 = fluid.nets.simple_img_conv_pool(
    input=images,
    filter_size=5,
    num_filters=20,
    pool_size=2,
    pool_stride=2,
    act="relu")
conv_pool_2 = fluid.nets.simple_img_conv_pool(
    input=conv_pool_1,
    filter_size=5,
    num_filters=50,
    pool_size=2,
    pool_stride=2,
    act="relu")

predict = fluid.layers.fc(input=conv_pool_2, size=10, act="softmax")
cost = fluid.layers.cross_entropy(input=predict, label=label)
avg_cost = fluid.layers.mean(x=cost)
optimizer = fluid.optimizer.Adam(learning_rate=0.01)
T
typhoonzero 已提交
42
optimize_ops, params_grads = optimizer.minimize(avg_cost)
T
typhoonzero 已提交
43 44 45 46 47 48 49 50 51 52 53 54

accuracy = fluid.evaluator.Accuracy(input=predict, label=label)

BATCH_SIZE = 50
PASS_NUM = 3
train_reader = paddle.batch(
    paddle.reader.shuffle(
        paddle.dataset.mnist.train(), buf_size=500),
    batch_size=BATCH_SIZE)

place = fluid.CPUPlace()
exe = fluid.Executor(place)
T
typhoonzero 已提交
55

T
typhoonzero 已提交
56 57 58
pserver_endpoints = os.getenv("PSERVERS")  # all pserver endpoints
trainers = int(os.getenv("TRAINERS"))  # total trainer count
current_endpoint = os.getenv("SERVER_ENDPOINT")  # current pserver endpoint
Y
Yancey1989 已提交
59 60
training_role = os.getenv("TRAINING_ROLE",
                          "TRAINER")  # get the training role: trainer/pserver
T
typhoonzero 已提交
61 62 63 64
if not current_endpoint:
    print("need env SERVER_ENDPOINT")
    exit(1)

T
typhoonzero 已提交
65 66
t = fluid.DistributeTranspiler()
t.transpile(
T
typhoonzero 已提交
67 68 69 70 71
    optimize_ops,
    params_grads,
    0,
    pservers=pserver_endpoints,
    trainers=trainers)
T
update  
typhoonzero 已提交
72

Y
Yancey1989 已提交
73
if training_role == "PSERVER":
74
    pserver_prog = t.get_pserver_program(current_endpoint)
T
typhoonzero 已提交
75 76
    pserver_startup = t.get_startup_program(current_endpoint, pserver_prog)
    exe.run(pserver_startup)
T
done  
typhoonzero 已提交
77
    exe.run(pserver_prog)
Y
Yancey1989 已提交
78
elif training_role == "TRAINER":
T
typhoonzero 已提交
79
    trainer_prog = t.get_trainer_program()
T
update  
typhoonzero 已提交
80
    feeder = fluid.DataFeeder(feed_list=[images, label], place=place)
T
typhoonzero 已提交
81
    # TODO(typhoonzero): change trainer startup program to fetch parameters from pserver
T
update  
typhoonzero 已提交
82 83 84 85
    exe.run(fluid.default_startup_program())

    for pass_id in range(PASS_NUM):
        accuracy.reset(exe)
T
typhoonzero 已提交
86
        batch_id = 0
T
update  
typhoonzero 已提交
87
        for data in train_reader():
T
typhoonzero 已提交
88
            loss, acc = exe.run(trainer_prog,
T
update  
typhoonzero 已提交
89 90 91
                                feed=feeder.feed(data),
                                fetch_list=[avg_cost] + accuracy.metrics)
            pass_acc = accuracy.eval(exe)
T
typhoonzero 已提交
92 93 94 95
            if batch_id % 100 == 0:
                print("batch_id %d, loss: %f, acc: %f" %
                      (batch_id, loss, pass_acc))
            batch_id += 1
T
update  
typhoonzero 已提交
96

T
typhoonzero 已提交
97
        pass_acc = accuracy.eval(exe)
T
update  
typhoonzero 已提交
98
        print("pass_id=" + str(pass_id) + " pass_acc=" + str(pass_acc))
Y
Yancey1989 已提交
99 100
else:
    print("environment var TRAINER_ROLE should be TRAINER os PSERVER")