提交 721b5020 编写于 作者: Q qiaolongfei

change predict size to label class_num

上级 111812fa
...@@ -181,7 +181,7 @@ images = data_layer(name='pixel', dims=[BATCH_SIZE, 784]) ...@@ -181,7 +181,7 @@ images = data_layer(name='pixel', dims=[BATCH_SIZE, 784])
labels = data_layer(name='label', dims=[BATCH_SIZE]) labels = data_layer(name='label', dims=[BATCH_SIZE])
fc1 = fc_layer(net=forward_net, input=images, size=100, act="sigmoid") fc1 = fc_layer(net=forward_net, input=images, size=100, act="sigmoid")
fc2 = fc_layer(net=forward_net, input=fc1, size=100, act="sigmoid") fc2 = fc_layer(net=forward_net, input=fc1, size=100, act="sigmoid")
predict = fc_layer(net=forward_net, input=fc2, size=100, act="softmax") predict = fc_layer(net=forward_net, input=fc2, size=10, act="softmax")
cost = cross_entropy_layer(net=forward_net, input=predict, label=labels) cost = cross_entropy_layer(net=forward_net, input=predict, label=labels)
init_net.complete_add_op(True) init_net.complete_add_op(True)
...@@ -223,7 +223,7 @@ def test(cost_name): ...@@ -223,7 +223,7 @@ def test(cost_name):
sum(error) / float(len(error)))) sum(error) / float(len(error))))
PASS_NUM = 1 PASS_NUM = 10
init_net.run(scope, dev_ctx) init_net.run(scope, dev_ctx)
for pass_id in range(PASS_NUM): for pass_id in range(PASS_NUM):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册