Starts this server. Raises: tf.errors.OpError: Or one of its subclasses if an error occurs while starting the TensorFlow server.
(self)
| 164 | self._server = None |
| 165 | |
| 166 | def start(self): |
| 167 | """Starts this server. |
| 168 | |
| 169 | Raises: |
| 170 | tf.errors.OpError: Or one of its subclasses if an error occurs while |
| 171 | starting the TensorFlow server. |
| 172 | """ |
| 173 | c_api.TF_ServerStart(self._server) |
| 174 | |
| 175 | def join(self): |
| 176 | """Blocks until the server has shut down. |
no outgoing calls