Hi HN,<p>If you have long-running Python tasks, like model training or evaluation runs, you may find our App useful.<p>Using a simple Python Api [1] you can log messages, numbers, and images. These will show up on the App [2].<p>Here is an example, you can also try it on Replit [4].<p><pre><code> from elbo.tracker.tracker import TaskTracker
tracker = TaskTracker("Hello World")
# Log a message
tracker.log_message("Hi there! Stay strong ")
# Log a metric
tracker.log_key_metric("Accuracy", 100.0)
# Log an image
tracker.log_image(image_title="We can do it!",
image_file_path="WeCanDoIt.jpeg")
# Upload logs
tracker.upload_logs()
</code></pre>
Would appreciate your candid feedback, thanks!<p>[1] API - <a href="https://docs.elbo.ai/reference/api-reference/the-elbo-tracker" rel="nofollow">https://docs.elbo.ai/reference/api-reference/the-elbo-tracke...</a><p>[2] App - <a href="https://apps.apple.com/us/app/elbo-tracker/id1625604999" rel="nofollow">https://apps.apple.com/us/app/elbo-tracker/id1625604999</a><p>[3] Website - <a href="https://www.elbo.ai/tracker" rel="nofollow">https://www.elbo.ai/tracker</a><p>[4] Replit demo - <a href="https://replit.com/@SaravanaRathina/ELBO-Tracker-Demo" rel="nofollow">https://replit.com/@SaravanaRathina/ELBO-Tracker-Demo</a><p>(edited to fix formatting and add links)