-
Notifications
You must be signed in to change notification settings - Fork 513
[FEAT] Use tqdm_notebook when possble #2000
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
SDK Unit Tests Results421 tests 415 ✅ 20s ⏱️ For more details on these failures, see this check. Results for commit 5e20b79. ♻️ This comment has been updated with latest results. |
sdks/python/src/opik/evaluation/engine/evaluation_tasks_executor.py
Outdated
Show resolved
Hide resolved
SDK E2E Tests Results51 tests 42 ✅ 55s ⏱️ For more details on these failures, see this check. Results for commit b6c71af. |
SDK E2E Tests Results51 tests 42 ✅ 55s ⏱️ For more details on these failures, see this check. Results for commit 5e20b79. ♻️ This comment has been updated with latest results. |
Details
Currently, execute uses tqdm.tqdm() always. Doesn't work well in colab or jupyter notebooks:
Not only is it plain text, but it also puts a new line for every update.
After updating:
Testing
Tests added.
Documentation
No docs needed as this is internal only.