We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
在5.2_best_practice.py当中,第74行的server未定义(书中也没有定义),导致实践中出现server未定义的错误。
翻阅书本发现,在讲创建tensorflow集群时,有过server = tf.train.Server(cluster, job_name=FLAGS.job_name, task_index=FLAGS.task_index)的定义,而5.2_best_practice.py里并没有。自己尝试加上之后,PS作业无异常。
server = tf.train.Server(cluster, job_name=FLAGS.job_name, task_index=FLAGS.task_index)
小小更正,也算不上什么大错误,书中的代码PS都是大写,而5.2_best_practice.py中PS为小写,如果不仔细看代码就会出错。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
问题描述:
在5.2_best_practice.py当中,第74行的server未定义(书中也没有定义),导致实践中出现server未定义的错误。
解决办法:
翻阅书本发现,在讲创建tensorflow集群时,有过
server = tf.train.Server(cluster, job_name=FLAGS.job_name, task_index=FLAGS.task_index)
的定义,而5.2_best_practice.py里并没有。自己尝试加上之后,PS作业无异常。其他:
小小更正,也算不上什么大错误,书中的代码PS都是大写,而5.2_best_practice.py中PS为小写,如果不仔细看代码就会出错。
The text was updated successfully, but these errors were encountered: