feat: Add Gradio (Hugging Face) Trackio Support#374
Open
evalstate wants to merge 11 commits into
Open
Conversation
Adds Trackio (https://github.com/gradio-app/trackio) as a third tracking backend alongside WandB and MLflow: - use_trackio / trackio_init_kwargs / trackio_attach_existing flags on gepa.optimize(), TrackingConfig, and ExperimentTracker - metrics, config, summaries, growing tables (trackio.Table), and HTML artifacts (trackio.Markdown) are logged with key_prefix support - attach-existing mode logs into a caller-owned run without touching init()/finish() - trackio.init() requires a project, so GEPA defaults it to "gepa" when trackio_init_kwargs omits one - config is written to the active run's config dict (trackio.config is an inert wandb-compat module dict) so it persists on the next log - trackio added to the [full] extra; lockfile refreshed accordingly Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Changed Files
|
Author
|
Thanks for taking a look at this @LakshyAAAgrawal; I've taken trackio out of the project deps as advised. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This adds
Trackiosupport to GEPA for metric logging and reporting.It follows the existing patterns for metrics integrations, and includes relevant document updates.
I've been extensively testing Trackio + GEPA recently.
Best, evalstate.