ajout: creation de fichier out.csv main et ajout README

This commit is contained in:
2026-03-09 14:14:42 +01:00
parent 54e4b7860b
commit 4bb3112dd0
4 changed files with 11 additions and 2 deletions

View File

@@ -1 +1,6 @@
# millesima_projetS6 # Millesima AI Engine 🍷
> A **University of Paris-Est Créteil (UPEC)** Semester 6 project.
[English Doc](./docs/README_EN.md)
[French Doc](./docs/README_FR.md)

0
docs/README_EN.md Normal file
View File

0
docs/README_FR.md Normal file
View File

View File

@@ -99,7 +99,11 @@ def main() -> None:
filename = argv[1] filename = argv[1]
cleaning: Cleaning = Cleaning(filename) cleaning: Cleaning = Cleaning(filename)
_ = cleaning.drop_empty_appellation().fill_missing_scores().encode_appellation() cleaning.drop_empty_appellation() \
.fill_missing_scores() \
.encode_appellation() \
.getVins() \
.to_csv("clean.csv", index=False)
if __name__ == "__main__": if __name__ == "__main__":