Recipes: Add "Train on this dataset" card with training configuration#7395
Draft
LeoBorcherding wants to merge 1 commit into
Draft
Recipes: Add "Train on this dataset" card with training configuration#7395LeoBorcherding wants to merge 1 commit into
LeoBorcherding wants to merge 1 commit into
Conversation
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.
Closes #6178
Summary
Adds a first-class Train node to the Recipe Studio graph. A finished dataset pipeline connects into this card, which holds a full training config and kicks off a fine-tuning run on the generated output. It's the first step toward the closed loop: generate, train, benchmark, regenerate.
What's included
trainnode kind with its own card, built on the existingBaseNodeprimitives so it matches the other nodes (fuchsia tone, stat chips, dataset-status row, primary action button). A single data-input handle lets the recipe output wire straight in.artifact_path(RecipeExecutionRecord) and trains on that. You can override it with a Hugging Face dataset or a local file.startTrainingRun(), so it reuses the real training runtime, consent gates, and dataset checks. The button disables while a run is active and surfaces start errors on the card.markdown_note, so it stays out of the dataset payload but is restored on load.Data wired
RecipePayload.run.artifact_path,run.dataset_name,run.output_formatsTrainingConfigState.datasetSource,uploadedFile,dataset,datasetFormatTesting
npm run typecheck: cleanbiome check: new files clean, no new lint introducedinstall.ps1 --local). Screenshots to follow.The Train node is UI-only in the recipe payload (not a dataset column); the backend training API is unchanged.