diff --git a/02.recognize_digits/README.cn.md b/02.recognize_digits/README.cn.md index 01a5c6e7e5a3f0be4bce5c0786e9927dc5a74932..ff6324b2f1ca2e1130c12e459e044843f69ed2e9 100644 --- a/02.recognize_digits/README.cn.md +++ b/02.recognize_digits/README.cn.md @@ -155,6 +155,7 @@ PaddlePaddle在API中提供了自动加载[MNIST](http://yann.lecun.com/exdb/mni ```python import paddle import paddle.fluid as fluid +from __future__ import print_function ``` ### Program Functions 配置 @@ -294,8 +295,8 @@ def event_handler(event): if event.step % 100 == 0: # event.metrics maps with train program return arguments. # event.metrics[0] will yeild avg_cost and event.metrics[1] will yeild acc in this example. - print "Pass %d, Batch %d, Cost %f" % ( - event.step, event.epoch, event.metrics[0]) + print("Pass %d, Batch %d, Cost %f" % ( + event.step, event.epoch, event.metrics[0])) if isinstance(event, fluid.EndEpochEvent): avg_cost, acc = trainer.test( @@ -419,7 +420,7 @@ img = load_image(cur_dir + '/image/infer_3.png') ```python results = inferencer.infer({'img': img}) lab = np.argsort(results) # probs and lab are the results of one batch data -print "Inference result of image/infer_3.png is: %d" % lab[0][0][-1] +print ("Inference result of image/infer_3.png is: %d" % lab[0][0][-1]) ``` ## 总结 diff --git a/02.recognize_digits/README.md b/02.recognize_digits/README.md index b547e417fc486870be206632b33c5e4dfacf7a90..97e05cf627c644ae63cf6c0ff7e23fa804fbd68b 100644 --- a/02.recognize_digits/README.md +++ b/02.recognize_digits/README.md @@ -161,6 +161,7 @@ A PaddlePaddle program starts from importing the API package: ```python import paddle import paddle.fluid as fluid +from __future__ import print_function ``` ### Program Functions Configuration @@ -300,8 +301,8 @@ def event_handler(event): if event.step % 100 == 0: # event.metrics maps with train program return arguments. # event.metrics[0] will yeild avg_cost and event.metrics[1] will yeild acc in this example. - print "Pass %d, Batch %d, Cost %f" % ( - event.step, event.epoch, event.metrics[0]) + print("Pass %d, Batch %d, Cost %f" % ( + event.step, event.epoch, event.metrics[0])) if isinstance(event, fluid.EndEpochEvent): avg_cost, acc = trainer.test( @@ -432,7 +433,7 @@ Now we are ready to do inference. ```python results = inferencer.infer({'img': img}) lab = np.argsort(results) # probs and lab are the results of one batch data -print "Inference result of image/infer_3.png is: %d" % lab[0][0][-1] +print("Inference result of image/infer_3.png is: %d" % lab[0][0][-1]) ``` diff --git a/02.recognize_digits/index.cn.html b/02.recognize_digits/index.cn.html index da3ea3c51fa5d47e4c1841658a42b91d22a48ee1..b2c6e6da715c6e908a9be70aa901bd3ca275d275 100644 --- a/02.recognize_digits/index.cn.html +++ b/02.recognize_digits/index.cn.html @@ -197,6 +197,7 @@ PaddlePaddle在API中提供了自动加载[MNIST](http://yann.lecun.com/exdb/mni ```python import paddle import paddle.fluid as fluid +from __future__ import print_function ``` ### Program Functions 配置 @@ -336,8 +337,8 @@ def event_handler(event): if event.step % 100 == 0: # event.metrics maps with train program return arguments. # event.metrics[0] will yeild avg_cost and event.metrics[1] will yeild acc in this example. - print "Pass %d, Batch %d, Cost %f" % ( - event.step, event.epoch, event.metrics[0]) + print("Pass %d, Batch %d, Cost %f" % ( + event.step, event.epoch, event.metrics[0])) if isinstance(event, fluid.EndEpochEvent): avg_cost, acc = trainer.test( @@ -461,7 +462,7 @@ img = load_image(cur_dir + '/image/infer_3.png') ```python results = inferencer.infer({'img': img}) lab = np.argsort(results) # probs and lab are the results of one batch data -print "Inference result of image/infer_3.png is: %d" % lab[0][0][-1] +print ("Inference result of image/infer_3.png is: %d" % lab[0][0][-1]) ``` ## 总结 diff --git a/02.recognize_digits/index.html b/02.recognize_digits/index.html index 9f0d51fddb394b9bc1909920a478e399d275b0dd..e508366805a5912ea80ecac435bba4e35e7e3941 100644 --- a/02.recognize_digits/index.html +++ b/02.recognize_digits/index.html @@ -203,6 +203,7 @@ A PaddlePaddle program starts from importing the API package: ```python import paddle import paddle.fluid as fluid +from __future__ import print_function ``` ### Program Functions Configuration @@ -342,8 +343,8 @@ def event_handler(event): if event.step % 100 == 0: # event.metrics maps with train program return arguments. # event.metrics[0] will yeild avg_cost and event.metrics[1] will yeild acc in this example. - print "Pass %d, Batch %d, Cost %f" % ( - event.step, event.epoch, event.metrics[0]) + print("Pass %d, Batch %d, Cost %f" % ( + event.step, event.epoch, event.metrics[0])) if isinstance(event, fluid.EndEpochEvent): avg_cost, acc = trainer.test( @@ -474,7 +475,7 @@ Now we are ready to do inference. ```python results = inferencer.infer({'img': img}) lab = np.argsort(results) # probs and lab are the results of one batch data -print "Inference result of image/infer_3.png is: %d" % lab[0][0][-1] +print("Inference result of image/infer_3.png is: %d" % lab[0][0][-1]) ```