-
Notifications
You must be signed in to change notification settings - Fork 9
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
Fixes the Graph, so that it displays loss, updates, and cost #121
base: master
Are you sure you want to change the base?
Conversation
@@ -87,7 +87,7 @@ def start(self, config): | |||
"nohup", | |||
"./parameter_server", | |||
"--config", config_filename, | |||
"--nworkers", str(self._num_workers), | |||
"--nworkers", str(self._num_workers + 20), |
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.
What is this 20?
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.
Messenger.py needs additional connections in order to connect to the parameter server. Without the 20, the parameter server would reject any connections made to it since it only allows self._num_workers number of concurrent connections.
No description provided.