You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that images can be sent through the API, the requests can take significant time, and would be nice to not block the main thread where the training will be happening.
The text was updated successfully, but these errors were encountered:
Provide a new async version of async_post_live_metrics.
Make _post_in_chunks async. Send params and metrics async, process data and send the image / plots chunk async as well.
In post_live_metrics, accept a blocking: Bool = True. By sticking with the current behavior by default, we can keep the Bool return type for existing client code. In non-blocking mode, we can return asyncio.create_task(async_post_live_metrics(...)).
Am I close? If that works, happy to submit a PR with that, unit tests, and docs!
Now that images can be sent through the API, the requests can take significant time, and would be nice to not block the main thread where the training will be happening.
The text was updated successfully, but these errors were encountered: