1 Commits

Author SHA1 Message Date
Johan LEROY
d8c2e85083 TP2 Partie 2 : split recent_history (v2) 2026-07-21 14:08:42 +02:00
4 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
outs: outs:
- md5: 2f70e749c483c8c74cde844a69d52631 - md5: 6ecb52ceb1d8322a91454aca4d902646
size: 114542933 size: 68171008
hash: md5 hash: md5
path: test.parquet path: test.parquet

View File

@@ -1,5 +1,5 @@
outs: outs:
- md5: b08dfd4b6aa3f59d68220a35110df0b0 - md5: 24bf315461302605f8fd229eb263f499
size: 216998722 size: 115206905
hash: md5 hash: md5
path: train.parquet path: train.parquet

View File

@@ -1,5 +1,5 @@
outs: outs:
- md5: 24bf315461302605f8fd229eb263f499 - md5: 5b3f656605f48a8aabeb5b21a6ae27ca
size: 115206905 size: 48074392
hash: md5 hash: md5
path: validation.parquet path: validation.parquet

View File

@@ -24,7 +24,7 @@ class SplitStrategy(StrEnum):
# Strategie de split active : pilote a la fois le decoupage produit par split/cli.py # Strategie de split active : pilote a la fois le decoupage produit par split/cli.py
# et le parametre "split_strategy" logge dans MLflow. On la modifie (et on committe) # et le parametre "split_strategy" logge dans MLflow. On la modifie (et on committe)
# a chaque changement de version de dataset pour synchroniser DVC et Git. # a chaque changement de version de dataset pour synchroniser DVC et Git.
CHOSEN_SPLIT_STRATEGY = SplitStrategy.FULL_HISTORY CHOSEN_SPLIT_STRATEGY = SplitStrategy.RECENT_HISTORY
DatasetPart = Literal["train", "test", "validation"] DatasetPart = Literal["train", "test", "validation"]