Method for retrieving the uri of current experiment manager. Here is the example code: .. code-block:: Python uri = R.get_uri() Returns ------- The uri of current experiment manager.
(self)
| 343 | self.exp_manager.delete_exp(experiment_id, experiment_name) |
| 344 | |
| 345 | def get_uri(self): |
| 346 | """ |
| 347 | Method for retrieving the uri of current experiment manager. |
| 348 | |
| 349 | Here is the example code: |
| 350 | |
| 351 | .. code-block:: Python |
| 352 | |
| 353 | uri = R.get_uri() |
| 354 | |
| 355 | Returns |
| 356 | ------- |
| 357 | The uri of current experiment manager. |
| 358 | """ |
| 359 | return self.exp_manager.uri |
| 360 | |
| 361 | def set_uri(self, uri: Optional[Text]): |
| 362 | """ |
no outgoing calls