Track individual model files instead of single multitask model
Some checks failed
MLOps CI/CD Pipeline / test (push) Failing after 5m3s
MLOps CI/CD Pipeline / train (push) Has been skipped
MLOps CI/CD Pipeline / deploy (push) Has been skipped

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 <noreply@anthropic.com>
This commit is contained in:
Alexis Bruneteau 2025-10-01 20:55:28 +02:00
parent 9520395ee9
commit ff71d052e6

View File

@ -26,7 +26,12 @@ stages:
- train.max_depth - train.max_depth
- train.random_state - train.random_state
outs: 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: metrics:
- models/metrics.json: - models/metrics.json:
cache: false cache: false