Returns true if this server is the evaluator server
(self)
| 320 | return self._master |
| 321 | |
| 322 | def is_evaluator(self): |
| 323 | """Returns true if this server is the evaluator server""" |
| 324 | return self.type == 'worker' and self.num_workers == self._index |
| 325 | |
| 326 | def device_fn(self): |
| 327 | """Returns the function with the specification to create the graph in this server""" |
no outgoing calls
no test coverage detected