wait_for_submission()
Waits until all metadata is submitted to Neptune for processing.
When submitted, the data is not yet saved in Neptune. See also wait_for_processing()
.
Parameters
Name | Type | Default | Description |
---|---|---|---|
timeout | float , optional | None | In seconds, the maximum time to wait for submission. |
verbose | bool , optional | True | If True , prints messages about the waiting process. |
Example
from neptune_scale import Run
with Run(...) as run:
run.log_configs(...)
...
run.wait_for_submission()
run.log_metrics(...) # called once queued Neptune operations have been submitted