From ff71d052e6c35bb9cb25d8a464c68eb912b55736 Mon Sep 17 00:00:00 2001 From: Alexis Bruneteau Date: Wed, 1 Oct 2025 20:55:28 +0200 Subject: [PATCH] Track individual model files instead of single multitask model MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The training script creates separate model files for each task (match_winner, map_winner, score_team1, score_team2, round_diff, total_maps) so DVC needs to track each file individually. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- dvc.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dvc.yaml b/dvc.yaml index 49b02f4..faa06e9 100644 --- a/dvc.yaml +++ b/dvc.yaml @@ -26,7 +26,12 @@ stages: - train.max_depth - train.random_state outs: - - models/multitask_model.pkl + - models/model_match_winner.pkl + - models/model_map_winner.pkl + - models/model_score_team1.pkl + - models/model_score_team2.pkl + - models/model_round_diff.pkl + - models/model_total_maps.pkl metrics: - models/metrics.json: cache: false