TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: iOS App to track your Python Training/Evaluation/Backend tasks

2 pointsby srelboalmost 3 years ago

1 comment

srelboalmost 3 years ago
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(&quot;Hello World&quot;) # Log a message tracker.log_message(&quot;Hi there! Stay strong &quot;) # Log a metric tracker.log_key_metric(&quot;Accuracy&quot;, 100.0) # Log an image tracker.log_image(image_title=&quot;We can do it!&quot;, image_file_path=&quot;WeCanDoIt.jpeg&quot;) # Upload logs tracker.upload_logs() </code></pre> Would appreciate your candid feedback, thanks!<p>[1] API - <a href="https:&#x2F;&#x2F;docs.elbo.ai&#x2F;reference&#x2F;api-reference&#x2F;the-elbo-tracker" rel="nofollow">https:&#x2F;&#x2F;docs.elbo.ai&#x2F;reference&#x2F;api-reference&#x2F;the-elbo-tracke...</a><p>[2] App - <a href="https:&#x2F;&#x2F;apps.apple.com&#x2F;us&#x2F;app&#x2F;elbo-tracker&#x2F;id1625604999" rel="nofollow">https:&#x2F;&#x2F;apps.apple.com&#x2F;us&#x2F;app&#x2F;elbo-tracker&#x2F;id1625604999</a><p>[3] Website - <a href="https:&#x2F;&#x2F;www.elbo.ai&#x2F;tracker" rel="nofollow">https:&#x2F;&#x2F;www.elbo.ai&#x2F;tracker</a><p>[4] Replit demo - <a href="https:&#x2F;&#x2F;replit.com&#x2F;@SaravanaRathina&#x2F;ELBO-Tracker-Demo" rel="nofollow">https:&#x2F;&#x2F;replit.com&#x2F;@SaravanaRathina&#x2F;ELBO-Tracker-Demo</a><p>(edited to fix formatting and add links)