Show HN: iOS App to track your Python Training/Evaluation/Backend tasks
elbo.aiHi HN,
If you have long-running Python tasks, like model training or evaluation runs, you may find our App useful.
Using a simple Python Api [1] you can log messages, numbers, and images. These will show up on the App [2].
Here is an example, you can also try it on Replit [4].
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()
Would appreciate your candid feedback, thanks![1] API - https://docs.elbo.ai/reference/api-reference/the-elbo-tracke...
[2] App - https://apps.apple.com/us/app/elbo-tracker/id1625604999
[3] Website - https://www.elbo.ai/tracker
[4] Replit demo - https://replit.com/@SaravanaRathina/ELBO-Tracker-Demo
(edited to fix formatting and add links)