VincentGOURBIN commited on
Commit
ceff0f7
1 Parent(s): 985e206

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. requirements.txt +82 -0
  2. runningscript.py +1 -1
requirements.txt ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ aiofiles==23.2.1
2
+ aiohappyeyeballs==2.4.3
3
+ aiohttp==3.10.9
4
+ aiosignal==1.3.1
5
+ annotated-types==0.7.0
6
+ anyio==4.6.0
7
+ attrs==24.2.0
8
+ certifi==2024.8.30
9
+ charset-normalizer==3.3.2
10
+ click==8.1.7
11
+ contourpy==1.2.1
12
+ cycler==0.12.1
13
+ datasets==3.0.1
14
+ dill==0.3.8
15
+ fastapi==0.115.0
16
+ ffmpy==0.4.0
17
+ filelock==3.15.4
18
+ fonttools==4.53.1
19
+ frozenlist==1.4.1
20
+ fsspec==2024.6.1
21
+ gradio==5.0.0
22
+ gradio_client==1.4.0
23
+ h11==0.14.0
24
+ httpcore==1.0.6
25
+ httpx==0.27.2
26
+ huggingface-hub==0.25.1
27
+ idna==3.10
28
+ Jinja2==3.1.4
29
+ joblib==1.4.2
30
+ kiwisolver==1.4.5
31
+ markdown-it-py==3.0.0
32
+ MarkupSafe==2.1.5
33
+ matplotlib==3.9.0
34
+ mdurl==0.1.2
35
+ mpmath==1.3.0
36
+ multidict==6.1.0
37
+ multiprocess==0.70.16
38
+ networkx==3.3
39
+ numpy==2.0.1
40
+ orjson==3.10.7
41
+ packaging==24.1
42
+ pandas==2.2.2
43
+ pillow==10.4.0
44
+ propcache==0.2.0
45
+ pyarrow==17.0.0
46
+ pydantic==2.9.2
47
+ pydantic_core==2.23.4
48
+ pydub==0.25.1
49
+ Pygments==2.18.0
50
+ pyparsing==3.1.2
51
+ python-dateutil==2.9.0.post0
52
+ python-multipart==0.0.12
53
+ pytz==2024.1
54
+ PyYAML==6.0.2
55
+ requests==2.32.3
56
+ rich==13.9.2
57
+ ruff==0.6.9
58
+ scikit-learn==1.5.1
59
+ scipy==1.14.0
60
+ seaborn==0.13.2
61
+ semantic-version==2.10.0
62
+ setuptools==72.1.0
63
+ shellingham==1.5.4
64
+ six==1.16.0
65
+ sniffio==1.3.1
66
+ starlette==0.38.6
67
+ sympy==1.13.1
68
+ threadpoolctl==3.5.0
69
+ tomlkit==0.12.0
70
+ torch==2.5.0.dev20240806
71
+ torchaudio==2.4.0.dev20240806
72
+ torchvision==0.20.0.dev20240806
73
+ tqdm==4.66.5
74
+ typer==0.12.5
75
+ typing_extensions==4.12.2
76
+ tzdata==2024.1
77
+ urllib3==2.2.3
78
+ uvicorn==0.31.0
79
+ websockets==12.0
80
+ xgboost==2.1.1
81
+ xxhash==3.5.0
82
+ yarl==1.14.0
runningscript.py CHANGED
@@ -10,7 +10,7 @@ from xgboost import XGBRegressor
10
 
11
  # 1. Chargement des données
12
  print("Chargement des données...")
13
- parquet_files = glob.glob('FuelInFranceData/*.parquet')
14
 
15
  if not parquet_files:
16
  raise FileNotFoundError("Aucun fichier Parquet trouvé dans le répertoire spécifié.")
 
10
 
11
  # 1. Chargement des données
12
  print("Chargement des données...")
13
+ parquet_files = glob.glob('*.parquet')
14
 
15
  if not parquet_files:
16
  raise FileNotFoundError("Aucun fichier Parquet trouvé dans le répertoire spécifié.")