Ilyas KHIAT commited on
Commit
64cd369
1 Parent(s): bc6ee94

emission detailed

Browse files
Files changed (5) hide show
  1. app.py +7 -43
  2. documentations.py +1 -3
  3. emissions.csv +178 -2
  4. empreinte_carbone.py +105 -0
  5. requirements.txt +1 -1
app.py CHANGED
@@ -24,6 +24,7 @@ from prompt import get_prompts_list,prompt_execution,execute_prompt
24
  from chat_with_pps import display_chat
25
  from high_chart import test_chart
26
  from chat_te import display_chat_te
 
27
  from comparateur import *
28
  import base64
29
  import pandas as pd
@@ -97,6 +98,7 @@ def main():
97
  "Audit flash RSE de vos contenus",
98
  "Parties prenantes",
99
  "Chatbot Parties Prenantes",
 
100
  # "Prompts RSE - TE",
101
  # "Chatbot RSE - TE",
102
  ]
@@ -132,54 +134,16 @@ def main():
132
  # execute_prompt(selected_prompt)
133
  elif ia_mode == "Chatbot RSE - TE":
134
  display_chat_te()
 
 
 
135
 
136
  elif section_principale == "Documentation":
137
  display_documentation()
138
-
139
 
140
- #consommation carbone
141
  st.sidebar.markdown("---")
142
-
143
- svg_file_path = "feuille.svg"
144
- svg_base64 = load_svg_as_base64(svg_file_path)
145
- st.sidebar.markdown(
146
- f"""
147
- **Votre consommation Carbone**
148
- <img src='data:image/svg+xml;base64,{svg_base64}' alt='svg' width='15' height='15' style='margin-left: 10px;'>
149
- """,
150
- unsafe_allow_html=True
151
- )
152
-
153
- serveur_emission = st.session_state['emission'].stop()
154
- emission_api = sum([value["el"] for value in st.session_state["partial_emissions"].values()])
155
-
156
- total_emission = serveur_emission + emission_api
157
-
158
- pourcentage_api = emission_api / total_emission
159
- pourcentage_serveur = serveur_emission / total_emission
160
-
161
- st.sidebar.markdown(f"<div style='text-align: center; margin-bottom: 10px;'><b>{total_emission*1000:.3f}</b> g eq. CO2</div>", unsafe_allow_html=True)
162
- st.sidebar.markdown("Dont :")
163
- st.sidebar.markdown(f"- Empreinte serveur (via CodeCarbon) : **{serveur_emission*1000:.3f}** g eq. CO2 ({pourcentage_serveur:.2%})")
164
- st.sidebar.markdown(f"- Empreinte serveur (via EcoLogits) : **{emission_api*1000:.3f}** g eq. CO2 ({pourcentage_api:.2%})")
165
- # st.sidebar.markdown("(avec l'outil CodeCarbon)")
166
- c1,c2,c3 = st.sidebar.columns([1,1,1])
167
-
168
- c2.write("---")
169
-
170
- st.sidebar.markdown("**Votre équivalence**")
171
- col1,col2,col3 = st.sidebar.columns([1,1,1])
172
- display_comparaison(col1,total_emission,dict_comparaison_1kgCO2["eau en litre"][0]*1000,dict_comparaison_1kgCO2["eau en litre"][1],"ml")
173
- display_comparaison(col2,total_emission,dict_comparaison_1kgCO2["tgv en km"][0],dict_comparaison_1kgCO2["tgv en km"][1],"km")
174
- display_comparaison(col3,total_emission,dict_comparaison_1kgCO2["voiture en km"][0]*1000,dict_comparaison_1kgCO2["voiture en km"][1],"m")
175
- st.sidebar.markdown("\n")
176
- st.sidebar.markdown(
177
- f"""
178
- Powered by **ADEME**
179
- <a href='https://www.ademe.fr' target='_blank'><img src='https://www.ademe.fr/wp-content/uploads/2022/11/ademe-logo-2022-1.svg' alt='svg' width='30' height='30' style='margin-left: 10px;'>
180
- """,
181
- unsafe_allow_html=True
182
- )
183
  # Instructions communes à toutes les sections
184
  st.sidebar.markdown("---")
185
  st.sidebar.markdown("Powered by **bziiit IA RSE**")
 
24
  from chat_with_pps import display_chat
25
  from high_chart import test_chart
26
  from chat_te import display_chat_te
27
+ from empreinte_carbone import *
28
  from comparateur import *
29
  import base64
30
  import pandas as pd
 
98
  "Audit flash RSE de vos contenus",
99
  "Parties prenantes",
100
  "Chatbot Parties Prenantes",
101
+ "Empreinte carbone détaillée",
102
  # "Prompts RSE - TE",
103
  # "Chatbot RSE - TE",
104
  ]
 
134
  # execute_prompt(selected_prompt)
135
  elif ia_mode == "Chatbot RSE - TE":
136
  display_chat_te()
137
+
138
+ elif ia_mode == "Empreinte carbone détaillée":
139
+ display_carbon_footprint()
140
 
141
  elif section_principale == "Documentation":
142
  display_documentation()
 
143
 
144
+ #carbon foot_print
145
  st.sidebar.markdown("---")
146
+ display_cf_comparison(st.sidebar)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  # Instructions communes à toutes les sections
148
  st.sidebar.markdown("---")
149
  st.sidebar.markdown("Powered by **bziiit IA RSE**")
documentations.py CHANGED
@@ -6,9 +6,7 @@ def display_documentation():
6
  st.markdown("<hr style='border-color: darkgrey;'>", unsafe_allow_html=True) # Add this line
7
 
8
  st.title("OPEN DATA IA RSE Bordeaux Métropole")
9
- st.markdown("## Empreinte carbone détaillée de l'APP:")
10
- table = get_table_empreintes_detailed()
11
- st.table(table)
12
  st.markdown("## La Data et l'IA au service des démarches RSE (Economie, Social, Environnemental)")
13
 
14
  st.image("DATA IA RSE Bordeaux Metropole.png", caption="Data IA RSE Bordeaux Metropole")
 
6
  st.markdown("<hr style='border-color: darkgrey;'>", unsafe_allow_html=True) # Add this line
7
 
8
  st.title("OPEN DATA IA RSE Bordeaux Métropole")
9
+
 
 
10
  st.markdown("## La Data et l'IA au service des démarches RSE (Economie, Social, Environnemental)")
11
 
12
  st.image("DATA IA RSE Bordeaux Metropole.png", caption="Data IA RSE Bordeaux Metropole")
emissions.csv CHANGED
@@ -1271,5 +1271,181 @@ timestamp,project_name,run_id,duration,emissions,emissions_rate,cpu_power,gpu_po
1271
  2024-07-17T09:14:14,codecarbon,7539c092-6c72-42e2-ae3e-cd587b53e5ff,5.1388983726501465,3.048413897901206e-05,5.932037718677688e-06,42.5,27.461174566740585,5.86829710006714,6.064311895105575e-05,1.712862481400082e-05,8.266541965794356e-06,8.603828573085092e-05,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1272
  2024-07-17T09:14:15,codecarbon,4d07401f-6d68-4aee-9b6d-bd50770a324d,0.0633947849273681,1.6714945578603905e-06,2.63664362892852e-05,42.5,239.64970595555943,5.86829710006714,7.366735074255202e-07,3.956114275997791e-06,2.4830334830501976e-08,4.717618118253813e-06,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1273
  2024-07-17T09:15:02,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,0.0278906822204589,1.187888462550864e-06,4.2590871501863016e-05,42.5,425.6488277993604,5.86829710006714,3.187128239207798e-07,3.011946853998665e-06,2.2030946791934043e-08,3.352690624711379e-06,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1274
- 2024-07-17T09:15:04,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,2.012736320495605,1.1763250693945425e-05,5.844407225209164e-06,42.5,5.852342659812703,5.86829710006714,2.3738773001564876e-05,6.235004987999865e-06,3.226763610974407e-06,3.3200541600539143e-05,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1275
- 2024-07-17T09:15:09,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,7.384405136108398,3.8883768621598524e-05,5.265660253588196e-06,42.5,2.9621802548255554,5.86829710006714,8.714256203836866e-05,1.06525085219987e-05,1.1950289059621187e-05,0.00010974535961998853,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1271
  2024-07-17T09:14:14,codecarbon,7539c092-6c72-42e2-ae3e-cd587b53e5ff,5.1388983726501465,3.048413897901206e-05,5.932037718677688e-06,42.5,27.461174566740585,5.86829710006714,6.064311895105575e-05,1.712862481400082e-05,8.266541965794356e-06,8.603828573085092e-05,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1272
  2024-07-17T09:14:15,codecarbon,4d07401f-6d68-4aee-9b6d-bd50770a324d,0.0633947849273681,1.6714945578603905e-06,2.63664362892852e-05,42.5,239.64970595555943,5.86829710006714,7.366735074255202e-07,3.956114275997791e-06,2.4830334830501976e-08,4.717618118253813e-06,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1273
  2024-07-17T09:15:02,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,0.0278906822204589,1.187888462550864e-06,4.2590871501863016e-05,42.5,425.6488277993604,5.86829710006714,3.187128239207798e-07,3.011946853998665e-06,2.2030946791934043e-08,3.352690624711379e-06,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1274
+ 2024-07-17T09:15:04,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,2.012736320495605,1.1763250693945425e-05,5.844407225209164e-06,42.5,5.852342659812703,5.86829710006714,2.373877300156488e-05,6.235004987999865e-06,3.226763610974407e-06,3.3200541600539143e-05,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1275
+ 2024-07-17T09:15:09,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,7.384405136108398,3.888376862159853e-05,5.265660253588196e-06,42.5,2.962180254825556,5.86829710006714,8.714256203836866e-05,1.06525085219987e-05,1.1950289059621189e-05,0.0001097453596199,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1276
+ 2024-07-17T09:36:09,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1267.6452448368073,0.0063809877074453,5.03373300490455e-06,42.5,2.763899312524142,5.86829710006714,0.0149652102134294,0.000978215227016,0.0020662432596027,0.0180096687000481,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1277
+ 2024-07-17T09:36:19,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1276.9543664455414,0.0064297399950578,5.035215168225108e-06,42.5,4.8642279269935,5.86829710006714,0.0150750976146923,0.0009907894037419,0.0020813799012822,0.0181472669197166,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1278
+ 2024-07-17T09:36:46,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1304.819927930832,0.0065722050384622,5.0368674617687184e-06,42.5,3.5860753599811823,5.86829710006714,0.0154040479984548,0.0010185447037239,0.0021267668637994,0.0185493595659783,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1279
+ 2024-07-17T09:36:47,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1305.8670134544373,0.0065784871182334,5.037639400072803e-06,42.5,13.16653728895096,5.86829710006714,0.015416378668944,0.0010223610956659,0.0021283503127898,0.0185670900773998,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1280
+ 2024-07-17T09:36:50,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1308.5362238883972,0.0065943885102954,5.039515444746225e-06,42.5,12.306242998589774,5.86829710006714,0.015447842945324,0.0010314649918379,0.0021326621519282,0.0186119700890902,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1281
+ 2024-07-17T09:36:54,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1312.7692203521729,0.0066175524876523,5.0409107595294185e-06,42.5,7.255660958465604,5.86829710006714,0.0154978391763236,0.0010399963875519,0.0021395124223519,0.0186773479862275,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1282
+ 2024-07-17T09:39:33,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1471.8055543899536,0.0074182720241463,5.040252771176136e-06,42.5,2.789387209214792,5.86829710006714,0.0173753514531585,0.001163220930576,0.0023987225315692,0.0209372949153038,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1283
+ 2024-07-17T09:39:36,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1474.577810049057,0.0074350347455123,5.042144737865703e-06,42.5,13.181409470166926,5.86829710006714,0.0174080675090352,0.0011733478831219,0.0024031905464793,0.0209846059386365,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1284
+ 2024-07-17T09:39:44,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1482.8076684474945,0.0074783269450316,5.043355995630533e-06,42.5,5.117890279370951,5.86829710006714,0.0175052019698752,0.0011850420591439,0.002416549603182,0.0211067936322012,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1285
+ 2024-07-17T09:39:45,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1482.9758591651917,0.0074820927751508,5.045323380626506e-06,42.5,185.24214432800835,5.86829710006714,0.0175071623831987,0.0011934840103419,0.0024167758992907,0.0211174222928314,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1286
+ 2024-07-17T09:39:45,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1483.3701996803284,0.0074860296300144,5.046636120658029e-06,42.5,54.16689751272043,5.86829710006714,0.0175118059282501,0.0011993495705899,0.0024173781540291,0.0211285336528692,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1287
+ 2024-07-17T09:39:45,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1483.6824564933777,0.0074893490878636,5.047811312377696e-06,42.5,63.04226266195806,5.86829710006714,0.0175154062969817,0.0012046551303899,0.0024178410472016,0.0211379024745733,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1288
+ 2024-07-17T09:39:46,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1484.0097043514252,0.0074928953624537,5.049087846584168e-06,42.5,62.9858798445861,5.86829710006714,0.0175192522000935,0.0012103198571439,0.0024183394055075,0.021147911462745,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1289
+ 2024-07-17T09:39:47,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1485.3212096691132,0.0075025570135806,5.051134370626815e-06,42.5,26.61438046498923,5.86829710006714,0.0175347408839398,0.0012199984759979,0.0024204411000015,0.0211751804599393,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1290
+ 2024-07-17T09:40:13,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1511.5849742889404,0.0076351084463995,5.05106135365707e-06,42.5,2.9162600788510304,5.86829710006714,0.0178447992331451,0.00124127321524,0.0024632205314702,0.0215492929798553,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1291
+ 2024-07-17T09:40:15,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1513.887797355652,0.0076492613593952,5.05272674286456e-06,42.5,14.195541790848756,5.86829710006714,0.0178719617350234,0.0012503379447139,0.0024669384129873,0.0215892380927247,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1292
+ 2024-07-17T09:40:16,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1514.373132944107,0.0076542224733747,5.054383432235142e-06,42.5,56.35532800366688,5.86829710006714,0.0178776795893907,0.001257872672964,0.0024676880543595,0.0216032403167142,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1293
+ 2024-07-17T09:40:16,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1514.6968839168549,0.0076580477122442,5.055828524873792e-06,42.5,73.35460832194526,5.86829710006714,0.0178814780147539,0.001264387955954,0.0024681706816048,0.0216140366523127,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1294
+ 2024-07-17T09:40:18,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1516.1170301437378,0.007667756546056,5.057496481870623e-06,42.5,21.22503192225197,5.86829710006714,0.0178982436299324,0.0012727432404159,0.0024704519473392,0.0216414388176876,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1295
+ 2024-07-17T09:40:22,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1519.9551043510437,0.0076876503210446,5.05781407558547e-06,42.5,4.3433315807973045,5.86829710006714,0.0179435424826211,0.0012773701885619,0.0024766742403677,0.0216975869115509,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1296
+ 2024-07-17T09:40:22,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1520.3079776763916,0.0076911791066219,5.05896122335489e-06,42.5,54.797675820458856,5.86829710006714,0.017947672815952,0.001282659081682,0.0024772146411836,0.0217075465388176,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1297
+ 2024-07-17T09:40:22,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1520.6903188228607,0.007693346902793,5.059114803037829e-06,42.5,9.621717659829644,5.86829710006714,0.0179521991161836,0.0012836768602739,0.0024777889397399,0.0217136649161975,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1298
+ 2024-07-17T09:40:23,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1520.9958515167236,0.0076976026636764,5.060896554057293e-06,42.5,94.17435987007067,5.86829710006714,0.017955806099375,0.0012916168666259,0.0024782533890348,0.0217256763550359,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1299
+ 2024-07-17T09:40:24,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1522.930299282074,0.0077104519819826,5.0629053644920175e-06,42.5,19.266999553841032,5.86829710006714,0.0179786296844482,0.0013019504860039,0.0024813620381358,0.0217619422085881,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1300
+ 2024-07-17T09:40:25,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1523.82240319252,0.0077159598915162,5.063555881151715e-06,42.5,14.602149244640511,5.86829710006714,0.017989149774611,0.0013055563222219,0.0024827816088595,0.0217774877056925,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1301
+ 2024-07-17T09:40:27,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1525.1112082004547,0.0077231210378359,5.063972382019802e-06,42.5,8.240159572774077,5.86829710006714,0.0180043530318472,0.0013084982690199,0.0024848479894018,0.021797699290269,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1302
+ 2024-07-17T09:40:28,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1526.363994598389,0.0077298750822641,5.064240973725303e-06,42.5,6.567630370325902,5.86829710006714,0.0180191308216916,0.0013107782708439,0.0024868527799095,0.0218167618724452,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1303
+ 2024-07-17T09:40:28,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1526.5261764526367,0.0077327468204113,5.065584160751724e-06,42.5,136.06696928074012,5.86829710006714,0.0180210336526235,0.0013167954978799,0.0024870379017344,0.0218248670522379,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1304
+ 2024-07-17T09:40:31,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1529.735422372818,0.0077498123405627,5.06611288933987e-06,42.5,5.768468232247457,5.86829710006714,0.018058873364826,0.001321928001986,0.002492231326579,0.021873032693391,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1305
+ 2024-07-17T09:40:51,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1549.0127789974213,0.0078480830096853,5.066506303947268e-06,42.5,3.433745618692151,5.86829710006714,0.018286465659572,0.00134031357225,0.0025236121206,0.022150391352422,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1306
+ 2024-07-17T09:40:51,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,1549.2097582817078,0.0078496467701913,5.066871498987787e-06,42.5,34.119972979968544,5.86829710006714,0.0182887732898195,0.0013421477403839,0.0025238838722723,0.0221548049024759,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1307
+ 2024-07-17T13:49:04,codecarbon,47150a56-e4e2-4d81-aec0-ae0d287c418f,16442.672165632248,0.0816098542095439,4.963296317500101e-06,42.5,1.9524326272882773,5.86829710006714,0.1941143475646774,0.0094195005911499,0.0268014078200127,0.2303352559758401,The Netherlands,NLD,north holland,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,4.8975,52.3759,15.648792266845703,machine,N,1.0
1308
+ 2024-07-17T14:00:53,codecarbon,512887b6-cee7-4663-975f-75102cadcc1b,0.0241248607635498,2.4226106792553792e-08,1.0041967508122143e-06,42.5,0.0,5.86829710006714,2.729886107974583e-07,0.0,1.2430713093654809e-08,2.854193238911131e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1309
+ 2024-07-17T14:01:12,codecarbon,627d7de7-d36f-44a5-bc4e-627e496cf51d,0.0227184295654296,1.4141392223166288e-07,6.224634578036611e-06,42.5,242.43128368971568,5.86829710006714,2.5641868511835735e-07,1.3952788940063687e-06,1.436731598081072e-08,1.6660648951055368e-06,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1310
+ 2024-07-17T14:02:26,codecarbon,f4ed5e69-9881-41d6-9bbd-b827c39164dc,0.1626689434051513,1.1151815611145462e-06,6.855528398786113e-06,42.5,294.13967341265703,5.86829710006714,1.814138061470456e-06,1.116667559999257e-05,1.576724318527075e-07,1.3138486093315734e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1311
+ 2024-07-17T14:02:29,codecarbon,5da62300-505d-4f20-8751-07e6748886e8,3.8070361614227295,5.633660784668635e-06,1.4798022781489097e-06,42.5,4.455630555006295,5.86829710006714,4.467274761862226e-05,1.566723475599635e-05,6.032863496193197e-06,6.63728458708118e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1312
+ 2024-07-17T14:03:21,codecarbon,13b44d2a-06c2-4fc1-809d-b104f5b4723d,0.0215325355529785,6.633550297704909e-07,3.0807102495587496e-05,42.5,1391.1568216380056,5.86829710006714,2.542035447226631e-07,7.548061594003785e-06,1.30369945514038e-08,7.815302133277853e-06,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1313
+ 2024-07-17T14:03:42,codecarbon,5ac2f86c-abf1-4a72-aa68-ad8ea3acab43,0.0199635028839111,5.896446649458421e-08,2.95361324299978e-06,42.5,92.29622347152508,5.86829710006714,2.23858654499054e-07,4.611114799990546e-07,9.71838085414826e-09,6.946885153522568e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1314
+ 2024-07-17T14:04:00,codecarbon,7cb22442-7e61-4907-8301-595b0b033f49,0.0257165431976318,2.6253157951191223e-08,1.0208665196342875e-06,42.5,0.0,5.86829710006714,2.918299701478746e-07,0.0,1.7471010674133443e-08,3.0930098082200805e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1315
+ 2024-07-17T14:04:11,codecarbon,5dac5f62-8ef0-48f9-a621-6330c8a4e80c,0.0264606475830078,2.6278971371606768e-08,9.9313409806653e-07,42.5,0.0,5.86829710006714,2.952976359261407e-07,0.0,1.4307465118956013e-08,3.096051010450967e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1316
+ 2024-07-17T14:04:27,codecarbon,bd481107-f3c5-421e-b8ab-3792a03240f6,0.0261201858520507,2.7574285944895773e-08,1.0556695921338868e-06,42.5,0.0,5.86829710006714,3.0836330519782175e-07,0.0,1.650251490957544e-08,3.248658201073972e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1317
+ 2024-07-17T14:04:52,codecarbon,f2ef3d8a-3ae2-4160-a05d-0f965071655b,0.0272600650787353,2.7420629681913025e-08,1.005890103443037e-06,42.5,0.0,5.86829710006714,3.10012698173523e-07,0.0,1.3042824180805232e-08,3.2305552235432817e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1318
+ 2024-07-17T14:05:14,codecarbon,4e487320-9226-42e3-94c9-772671eaea24,0.0251519680023193,2.5545825853683532e-08,1.0156591266070266e-06,42.5,0.0,5.86829710006714,2.841121620602078e-07,0.0,1.685540180934216e-08,3.0096756386955e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1319
+ 2024-07-17T14:12:35,codecarbon,a738b0e6-4523-4667-af28-687eee5bd23c,0.0366797447204589,5.968373037957435e-07,1.6271577360865423e-05,42.5,749.3351129205927,5.86829710006714,4.212313228183322e-07,6.595560831997027e-06,1.483290904900514e-08,7.031625063864365e-06,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1320
+ 2024-07-17T14:12:36,codecarbon,a738b0e6-4523-4667-af28-687eee5bd23c,1.804988145828247,2.7359210584698893e-06,1.515755693350811e-06,42.5,3.105422825843336,5.86829710006714,2.1261590222517648e-05,8.116673160002419e-06,2.8549280838012693e-06,3.223319146632134e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1321
+ 2024-07-17T14:18:24,codecarbon,b684f743-9679-4868-a214-4ab4ef3004a5,0.0380008220672607,2.900745921487915e-07,7.633376763149092e-06,42.5,368.48507794696303,5.86829710006714,4.355072975158692e-07,2.9675023740100004e-06,1.4497511037442716e-08,3.4175071825633124e-06,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1322
+ 2024-07-17T14:18:46,codecarbon,b684f743-9679-4868-a214-4ab4ef3004a5,21.57548451423645,2.619252437354865e-05,1.2139947242559345e-06,42.5,2.646130165841321,5.86829710006714,0.0002546974675522,1.8796126148003245e-05,3.50930340114914e-05,0.0003085866277117,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1323
+ 2024-07-17T14:18:51,codecarbon,b684f743-9679-4868-a214-4ab4ef3004a5,26.37257575988769,3.204957627785344e-05,1.2152615114144588e-06,42.5,3.4495847990456805,5.86829710006714,0.0003113179872433,2.3390018712002303e-05,4.288334500135961e-05,0.0003775913509566,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1324
+ 2024-07-17T14:18:54,codecarbon,b684f743-9679-4868-a214-4ab4ef3004a5,29.530077934265137,3.592349517454177e-05,1.2165052613307889e-06,42.5,3.713680958847915,5.86829710006714,0.0003485940658383,2.664418798201118e-05,4.799358414354488e-05,0.0004232318379639,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1325
+ 2024-07-17T14:18:56,codecarbon,b684f743-9679-4868-a214-4ab4ef3004a5,32.063536167144775,3.950636236690296e-05,1.2321274285206502e-06,42.5,11.690385515197113,5.86829710006714,0.0003784911233517,3.486141677800508e-05,5.209076583402759e-05,0.0004654433059638,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1326
+ 2024-07-17T14:19:31,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,0.0439677238464355,4.3664149869089544e-08,9.930955266548189e-07,42.5,0.0,5.86829710006714,4.950909150971306e-07,0.0,1.9337269366512072e-08,5.144281844636427e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1327
+ 2024-07-17T14:19:34,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,2.90374755859375,4.081650429728511e-06,1.405649198963151e-06,42.5,11.60680151921096,5.86829710006714,3.4244435197777215e-05,9.199174025996404e-06,4.644262095734273e-06,4.808787131950789e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1328
+ 2024-07-17T14:20:11,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,39.45698308944702,4.828738481467679e-05,1.2237981982862625e-06,42.5,2.928798272500165,5.86829710006714,0.0004657593770159,3.8935308925992784e-05,6.42020354458658e-05,0.0005688967213878,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1329
+ 2024-07-17T14:20:11,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,39.55357909202576,4.851426875725938e-05,1.2265456090430045e-06,42.5,55.87477871845969,5.86829710006714,0.0004668857210212,4.0366143403997023e-05,6.431788495046675e-05,0.0005715697493756,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1330
+ 2024-07-17T14:37:43,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1092.067669630051,0.0013114519751718,1.200888929910482e-06,42.5,2.524635319915483,5.86829710006714,0.0128923894554376,0.0007784792338939,0.0017799728046994,0.015450841494031,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1331
+ 2024-07-17T14:37:44,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1092.8407928943634,0.0013129315559984,1.2013932537430438e-06,42.5,33.18357547198142,5.86829710006714,0.0129015047637952,0.0007855606284479,0.0017812077495054,0.0154682731417486,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1332
+ 2024-07-17T14:37:44,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1093.0273807048798,0.0013135102236504,1.2017175844244623e-06,42.5,85.18442313083288,5.86829710006714,0.0129036956108278,0.0007899159097099,0.0017814791809367,0.0154750907014746,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1333
+ 2024-07-17T14:38:30,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1139.2546133995056,0.0013692375852355,1.2018714421965689e-06,42.5,2.7799557819863585,5.86829710006714,0.0134492679458525,0.000825599827146,0.0018567735662674,0.0161316413392659,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1334
+ 2024-07-17T14:38:34,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1142.342173576355,0.0013734317687342,1.202294549306885e-06,42.5,9.084566381254026,5.86829710006714,0.0134858495849702,0.0008334142778419,0.0018617911535549,0.0161810550163671,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1335
+ 2024-07-17T14:38:35,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1144.0683953762054,0.0013760173522598,1.2027404636130525e-06,42.5,15.29028080671876,5.86829710006714,0.0135062167397803,0.0008407328948079,0.0018645673750349,0.0162115170096233,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1336
+ 2024-07-17T14:38:37,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1146.2700033187866,0.0013793511413762,1.2033387747935308e-06,42.5,15.95518047600785,5.86829710006714,0.0135321934463249,0.0008504804026059,0.0018681201210287,0.0162507939699596,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1337
+ 2024-07-17T14:38:46,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1154.4913403987885,0.0013892265203735,1.2033234652879265e-06,42.5,2.600241208075246,5.86829710006714,0.0136292391467425,0.0008564156851319,0.0018814856902047,0.0163671405220793,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1338
+ 2024-07-17T14:38:46,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1154.665330171585,0.0013896065451689,1.2034712646672089e-06,42.5,46.582769467588186,5.86829710006714,0.0136312813541955,0.0008586023535479,0.0018817340677837,0.0163716177755272,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1339
+ 2024-07-17T14:38:47,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1156.0086433887482,0.0013919030962805,1.2040594196599144e-06,42.5,24.346807898108164,5.86829710006714,0.0136471281083093,0.0008676601385719,0.0018838862931167,0.0163986745399981,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1340
+ 2024-07-17T14:38:48,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1156.296203374863,0.001392494221702,1.2042712045907955e-06,42.5,79.19549782941333,5.86829710006714,0.0136505111033717,0.0008710240301519,0.0018841037371275,0.0164056388706512,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1341
+ 2024-07-17T14:38:51,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1159.566174507141,0.0013971530268906,1.2048928794292437e-06,42.5,12.181453497289782,5.86829710006714,0.0136890610453155,0.0008820665389859,0.0018893988932802,0.0164605264775817,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1342
+ 2024-07-17T14:38:52,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1160.5164301395416,0.0013984804599858,1.2050501170567062e-06,42.5,10.860086958171175,5.86829710006714,0.013700309626758,0.0008849348746139,0.0018909210989045,0.0164761656002766,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1343
+ 2024-07-17T14:38:53,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1161.8115079402924,0.0014004085976935,1.2053664369156165e-06,42.5,14.967382700168086,5.86829710006714,0.013715586915281,0.0008903068233559,0.0018929881720068,0.0164988819106439,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1344
+ 2024-07-17T14:38:53,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1161.968909740448,0.001400912932574,1.2056371911766052e-06,42.5,92.44302402455706,5.86829710006714,0.01371740936223,0.0008942148820379,0.0018931994762519,0.0165048237205199,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1345
+ 2024-07-17T14:38:56,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1164.4829301834106,0.0014039466692722,1.205639544283513e-06,42.5,2.907541126048295,5.86829710006714,0.0137470652199453,0.0008962421058819,0.0018972582943172,0.0165405656201446,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1346
+ 2024-07-17T14:38:57,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1165.7598147392273,0.0014056135473218,1.205748842557472e-06,42.5,7.195463961032096,5.86829710006714,0.0137621159336633,0.0008987862745839,0.0018993016975696,0.0165602039058169,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1347
+ 2024-07-17T14:39:16,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1184.837485551834,0.001429203573452,1.2062443929062629e-06,42.5,4.08824972135047,5.86829710006714,0.0139873251201377,0.0009204479585799,0.001930356181194,0.0168381292599118,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1348
+ 2024-07-17T14:39:16,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1185.0153856277466,0.001429975196237,1.2067144558461256e-06,42.5,140.8987724772182,5.86829710006714,0.0139894128181868,0.0009272087973219,0.001930598500622,0.0168472201161308,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1349
+ 2024-07-17T14:39:20,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1189.0664274692535,0.00143521326916,1.2070084866618613e-06,42.5,6.591393555710994,5.86829710006714,0.0140371663532323,0.0009346113032439,0.0019371546961678,0.0169089323526442,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1350
+ 2024-07-17T14:39:20,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1189.2596065998075,0.0014355007663001,1.2070541691097873e-06,42.5,14.731574465502128,5.86829710006714,0.0140394814873735,0.0009354060261019,0.0019374319801585,0.016912319493634,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1351
+ 2024-07-17T14:41:16,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1305.0198247432709,0.0015744137101436,1.206428960152695e-06,42.5,2.5287382902820847,5.86829710006714,0.0154060951737893,0.0010167177578179,0.0021261062373705,0.0185489191689779,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1352
+ 2024-07-17T14:41:17,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1305.9017314910889,0.0015755057087437,1.2064504324875945e-06,42.5,4.3452675716475735,5.86829710006714,0.015416494748493,0.0010177785919999,0.0021275111850518,0.0185617845255448,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1353
+ 2024-07-17T14:41:17,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1306.0620284080503,0.0015763301476787,1.206933601461565e-06,42.5,172.79309865945044,5.86829710006714,0.0154183871426516,0.0010253763758559,0.0021277341155211,0.0185714976340287,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1354
+ 2024-07-17T14:46:22,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1610.6714112758636,0.001941781289135,1.2055725801930528e-06,42.5,2.516874790581618,5.86829710006714,0.019014470134841,0.0012383371017799,0.0026242446741581,0.0228770519107792,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1355
+ 2024-07-17T14:46:23,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1611.3762826919556,0.0019430380712823,1.205825164583112e-06,42.5,27.515876397330658,5.86829710006714,0.0190227915335032,0.0012437093283,0.0026253577991417,0.0228918586609449,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1356
+ 2024-07-17T14:46:23,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1611.481200218201,0.0019436402507795,1.206120338553382e-06,42.5,202.15574566577496,5.86829710006714,0.0190240301431881,0.0012494323884339,0.0026254906933167,0.0228989532249388,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1357
+ 2024-07-17T14:46:54,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1643.1857652664185,0.0019817197873777,1.206022976383597e-06,42.5,2.5808109956326386,5.86829710006714,0.0193982842236757,0.0012721582399479,0.0026771439520711,0.0233475864156948,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1358
+ 2024-07-17T14:46:55,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1644.1110036373138,0.0019834385839051,1.206389702104725e-06,42.5,30.563268172594363,5.86829710006714,0.0194092194823755,0.0012800051906699,0.0026786117046818,0.0233678363777273,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1359
+ 2024-07-17T14:46:55,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1644.206547498703,0.0019836231472152,1.2064318502032863e-06,42.5,36.18660483901217,5.86829710006714,0.0194103356147805,0.0012809354691919,0.0026787397221775,0.0233700108061501,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1360
+ 2024-07-17T14:47:07,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1655.3771827220917,0.0019970431365289,1.20639764603077e-06,42.5,2.594845291064816,5.86829710006714,0.0195422111695011,0.00128898575341,0.002696921180848,0.0235281181037592,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1361
+ 2024-07-17T14:47:07,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1656.053163766861,0.0019984396957274,1.206748514752854e-06,42.5,39.959623426251895,5.86829710006714,0.0195501560393306,0.001296433537146,0.0026979820575838,0.0235445716340605,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1362
+ 2024-07-17T14:47:07,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1656.1416857242584,0.0019989121482613,1.2069692861979823e-06,42.5,183.61999293419345,5.86829710006714,0.0195511893277366,0.0013008465962319,0.00269810189883,0.0235501378227987,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1363
+ 2024-07-17T14:47:19,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1667.5734539031982,0.0020129714396382,1.207126099858825e-06,42.5,3.806358791039514,5.86829710006714,0.0196861358692248,0.0013129304947879,0.0027167106790516,0.0237157770430645,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1364
+ 2024-07-17T14:47:20,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1668.5226466655731,0.0020146952196435,1.2074725048951297e-06,42.5,28.888156406628347,5.86829710006714,0.0196973298349314,0.0013205313342019,0.0027182245486946,0.023736085717828,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1365
+ 2024-07-17T14:47:20,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1668.6076962947843,0.0020150171527091,1.2076038946623578e-06,42.5,119.74578001717768,5.86829710006714,0.0196983110830187,0.0013232296696939,0.0027183378121756,0.0237398785648884,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1366
+ 2024-07-17T14:47:32,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1680.4500613212583,0.0020293046832614,1.2075959470440115e-06,42.5,2.808191893183099,5.86829710006714,0.0198381218026081,0.0013324668993059,0.0027376180778713,0.0239082067797854,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1367
+ 2024-07-17T14:47:32,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1681.2021777629852,0.0020306306639734,1.2078444168299706e-06,42.5,26.732780750083304,5.86829710006714,0.0198469891672333,0.0013380296815339,0.0027388099424933,0.0239238287912606,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1368
+ 2024-07-17T14:47:33,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1681.2979159355164,0.0020308163976344,1.2078861089317827e-06,42.5,35.56468492149034,5.86829710006714,0.0198481194095479,0.0013389557933859,0.0027389418052125,0.0239260170081464,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1369
+ 2024-07-17T14:48:09,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1717.931976556778,0.0020748661172782,1.2077696588644422e-06,42.5,2.6344866676356933,5.86829710006714,0.0202805930258499,0.0013657624814979,0.0027986322667575,0.0244449877741054,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1370
+ 2024-07-17T14:48:10,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1718.8029012680054,0.002076319254534,1.2080031125164574e-06,42.5,22.63905422868547,5.86829710006714,0.0202908629740277,0.0013712205414199,0.0028000243620492,0.0244621078774969,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1371
+ 2024-07-17T14:48:10,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1718.8917245864868,0.0020765944298608,1.2081007780524243e-06,42.5,86.44031146205599,5.86829710006714,0.0202918998820914,0.0013733052653099,0.002800144701923,0.0244653498493244,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1372
+ 2024-07-17T14:48:57,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1765.7885205745697,0.0021329701894003,1.2079420409338e-06,42.5,2.6222606272819005,5.86829710006714,0.0208455310273501,0.0014074622370799,0.0028765463083772,0.0251295395728074,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1373
+ 2024-07-17T14:49:25,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1794.2099425792694,0.0021674343292437,1.208016006269538e-06,42.5,3.0699150617694984,5.86829710006714,0.0211810381394293,0.0014316953120219,0.0029228445978153,0.0255355780492666,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1374
+ 2024-07-17T14:49:25,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1794.281459569931,0.0021679183129078,1.2082375935754412e-06,42.5,239.2320241009984,5.86829710006714,0.021181894205345,0.0014364475380459,0.0029229383483607,0.0255412800917518,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1375
+ 2024-07-17T14:52:49,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,1997.4492888450625,0.0024121716663338,1.2076259857032932e-06,42.5,2.622724766676835,5.86829710006714,0.0235803915525476,0.0015844601564559,0.0032540936877831,0.0284189453967867,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1376
+ 2024-07-17T14:53:48,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,2056.651356458664,0.0024836588328576,1.2076226848357242e-06,42.5,2.847856562814131,5.86829710006714,0.0242793047832118,0.0016312924161439,0.0033505726171788,0.0292611698165346,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1377
+ 2024-07-17T14:53:49,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,2057.3037304878235,0.0024850740250172,1.2079276327506467e-06,42.5,43.98481721798504,5.86829710006714,0.0242869946276148,0.0016392385336119,0.0033516097094152,0.0292778428706421,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1378
+ 2024-07-17T14:54:09,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,2077.7490870952606,0.0025098979353537,1.2079889486861194e-06,42.5,3.136580530175036,5.86829710006714,0.0245283527533213,0.0016570493811939,0.0033849030688182,0.0295703052033335,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1379
+ 2024-07-17T14:54:10,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,2078.5300328731537,0.0025112064443391,1.2081646185635665e-06,42.5,22.95990850097616,5.86829710006714,0.0245375604530175,0.0016620174407239,0.0033861434783187,0.0295857213720603,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1380
+ 2024-07-17T14:54:10,codecarbon,3700eb03-4c5a-486a-b78f-b6d7a5e506dd,2078.6112937927246,0.002511828410198,1.2084166085785312e-06,42.5,284.19837396550884,5.86829710006714,0.024538519783318,0.0016682830012919,0.0033862462640125,0.0295930490486225,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1381
+ 2024-07-17T14:55:28,codecarbon,eb2aba75-c66e-4490-9826-25369466b4c7,0.0263521671295166,2.6888378527583365e-08,1.0203479051810567e-06,42.5,0.0,5.86829710006714,2.9937326908111575e-07,0.0,1.741154845423883e-08,3.167848175353546e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1382
+ 2024-07-17T14:55:29,codecarbon,eb2aba75-c66e-4490-9826-25369466b4c7,1.382570743560791,1.8591671841570697e-06,1.3447175797809895e-06,42.5,9.16718368814164,5.86829710006714,1.6275444295671254e-05,3.440836086006372e-06,2.1874553380772e-06,2.1903735719754823e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1383
+ 2024-07-17T14:55:56,codecarbon,9f83b0cf-58c4-4d3e-a729-d1de213c9ad1,0.0190885066986084,1.7869797775985616e-08,9.361548317076247e-07,42.5,0.0,5.86829710006714,2.0172132386101618e-07,0.0,8.811290519285347e-09,2.1053261438030162e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1384
+ 2024-07-17T14:55:57,codecarbon,9f83b0cf-58c4-4d3e-a729-d1de213c9ad1,1.5089049339294434,2.270442276632052e-06,1.504695375817638e-06,42.5,15.92031940673487,5.86829710006714,1.7777613467640347e-05,6.575005259995548e-06,2.396545101250544e-06,2.6749163828886435e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1385
+ 2024-07-17T14:56:28,codecarbon,9f83b0cf-58c4-4d3e-a729-d1de213c9ad1,32.52120399475098,3.987719295877519e-05,1.226190548333066e-06,42.5,3.065333770534248,5.86829710006714,0.0003839072513911,3.298058193999809e-05,5.292440478164225e-05,0.0004698122381127,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1386
+ 2024-07-17T14:56:29,codecarbon,9f83b0cf-58c4-4d3e-a729-d1de213c9ad1,33.2222912311554,4.131594959996477e-05,1.243621317762071e-06,42.5,38.9225694535762,5.86829710006714,0.0003921839757098,4.053947687599618e-05,5.403946403626559e-05,0.000486762916622,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1387
+ 2024-07-17T14:56:29,codecarbon,9f83b0cf-58c4-4d3e-a729-d1de213c9ad1,33.296854734420776,4.198469678545755e-05,1.2609208022899435e-06,42.5,343.01297016632645,5.86829710006714,0.0003930522572663,4.745226018399579e-05,5.4137228864537416e-05,0.0004946417463148,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1388
+ 2024-07-17T14:56:47,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,0.0356605052947998,5.592614346224074e-07,1.5682936346501006e-05,42.5,700.91979795516,5.86829710006714,4.091901911629571e-07,6.165004931994733e-06,1.473069621350002e-08,6.588925819371191e-06,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1389
+ 2024-07-17T14:56:49,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,2.050083637237549,3.019241276113449e-06,1.4727405366650422e-06,42.5,3.5109440137602337,5.86829710006714,2.4178786575794225e-05,8.1266731679977e-06,3.265662396118406e-06,3.557112213991033e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1390
+ 2024-07-17T14:56:52,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,4.79571270942688,6.473901936058331e-06,1.3499353127080888e-06,42.5,5.071794563459051,5.86829710006714,5.6580641534593376e-05,1.1989176257998224e-05,7.702310013559859e-06,7.627212780615146e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1391
+ 2024-07-17T14:56:57,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,10.32121229171753,1.357316996895082e-05,1.3150751661064943e-06,42.5,6.150159210342842,5.86829710006714,0.0001218122338255,2.1423350471998223e-05,1.6676407702274692e-05,0.0001599119919997,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1392
+ 2024-07-17T14:57:00,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,12.70156455039978,1.713547591206008e-05,1.3490838742004225e-06,42.5,15.212814616680843,5.86829710006714,0.0001499018099572,3.1465302949999774e-05,2.05141052039024e-05,0.0002018812181111,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1393
+ 2024-07-17T14:57:08,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,20.84342360496521,2.746246920589524e-05,1.3175603838590734e-06,42.5,5.452478464145572,5.86829710006714,0.0002460093576047,4.379225725599512e-05,3.374683888986634e-05,0.0003235484537505,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1394
+ 2024-07-17T14:57:08,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,21.03764605522156,2.7854688993966563e-05,1.3240401954121198e-06,42.5,38.50217271947966,5.86829710006714,0.0002482904680901,4.584809223399933e-05,3.4030821901959887e-05,0.000328169382226,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1395
+ 2024-07-17T14:57:09,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,21.446511268615723,2.84650265250112e-05,1.3272567350693623e-06,42.5,15.851625242669428,5.86829710006714,0.0002530819321672,4.7626426990000914e-05,3.4651700751730064e-05,0.0003353600599089,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1396
+ 2024-07-17T14:57:09,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,22.066983938217163,2.9563469143590354e-05,1.3397149889790896e-06,42.5,19.131410740177767,5.86829710006714,0.000260324228141,5.241531970999469e-05,3.55617886820312e-05,0.000348301336533,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1397
+ 2024-07-17T14:57:12,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,24.53035879135132,3.2868976673366786e-05,1.3399305306922547e-06,42.5,8.653686643120567,5.86829710006714,0.0002893821583853,5.8324768881998224e-05,3.953817073526722e-05,0.0003872450980026,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1398
+ 2024-07-17T14:57:12,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,24.70185923576355,3.31032792492464e-05,1.3401128608699708e-06,42.5,11.150545526340858,5.86829710006714,0.0002913831647899,5.884699152199774e-05,3.977537213734016e-05,0.0003900055284492,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1399
+ 2024-07-17T14:57:45,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,58.37429594993591,7.406894897708556e-05,1.2688623951989074e-06,42.5,3.2355396629371875,5.86829710006714,0.0006888924477828,8.910868239800362e-05,9.46405005768412e-05,0.0008726416307577,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1400
+ 2024-07-17T14:57:46,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,59.25483059883118,7.542051645528729e-05,1.27281633738693e-06,42.5,17.106551377918304,5.86829710006714,0.0006992521752913,9.326951905999636e-05,9.604339778316028e-05,0.0008885650921345,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1401
+ 2024-07-17T14:57:46,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,59.34548926353455,7.585381246702613e-05,1.278173175558185e-06,42.5,161.18042659057264,5.86829710006714,0.0007003106324209,9.719424442199144e-05,9.616508235815012e-05,0.000893669959201,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1402
+ 2024-07-17T14:58:35,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,107.613276720047,0.0001338026246261,1.2433653978791522e-06,42.5,2.5556547908163387,5.86829710006714,0.0012701147372523,0.0001314576051659,0.000174820223777,0.0015763925661954,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1403
+ 2024-07-17T14:58:36,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,109.04956579208374,0.0001356750447767,1.2441594222886708e-06,42.5,7.001107109815459,5.86829710006714,0.0012870715553561,0.0001342470518419,0.0001771338342385,0.0015984524414367,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1404
+ 2024-07-17T14:58:36,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,109.132666349411,0.0001361996292179,1.2480188908961251e-06,42.5,226.56072074051067,5.86829710006714,0.0012880408129758,0.0001393520559259,0.0001772399521484,0.0016046328210503,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1405
+ 2024-07-17T14:58:41,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,114.07762169837952,0.0001423935741405,1.24821653906024e-06,42.5,4.803731595503226,5.86829710006714,0.001346395123336,0.0001459451167559,0.0001852664016046,0.0016776066416967,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1406
+ 2024-07-17T14:58:42,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,114.98305249214172,0.0001441058162672,1.253278749728172e-06,42.5,32.16774310867226,5.86829710006714,0.0013570724969108,0.0001540087343179,0.0001866981519787,0.0016977793832076,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1407
+ 2024-07-17T14:58:42,codecarbon,34d24b87-4cc4-4554-a50e-806d04766514,115.1641445159912,0.0001449696568967,1.2588089592124008e-06,42.5,157.1444520898414,5.86829710006714,0.0013591969685422,0.0001618204072339,0.0001869393260789,0.0017079567018551,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1408
+ 2024-07-17T14:58:56,codecarbon,170113da-d289-415e-a399-ba7889784217,0.0349824428558349,3.5433551290069e-08,1.0128952811012395e-06,42.5,0.0,5.86829710006714,4.011824727058411e-07,0.0,1.6277102572720044e-08,4.174595752785612e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1409
+ 2024-07-17T14:58:58,codecarbon,170113da-d289-415e-a399-ba7889784217,1.404543399810791,1.930233587641897e-06,1.3742783511722904e-06,42.5,10.459112032106876,5.86829710006714,1.6557811366187203e-05,3.970280954002092e-06,2.212910609179536e-06,2.274100292936883e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1410
+ 2024-07-17T14:58:58,codecarbon,170113da-d289-415e-a399-ba7889784217,1.5991172790527344,2.1981348528412235e-06,1.3745926466027109e-06,42.5,11.11226815477255,5.86829710006714,1.884437385532592e-05,4.561948093999291e-06,2.490953617554984e-06,2.5897275566880187e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1411
+ 2024-07-17T15:00:43,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,0.0227222442626953,2.3915428734789697e-08,1.052511735121751e-06,42.5,0.0,5.86829710006714,2.68248716990153e-07,0.0,1.3510360458800128e-08,2.817590774489532e-07,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1412
+ 2024-07-17T15:00:47,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,3.8655622005462646,4.927375132275593e-06,1.2746852531772165e-06,42.5,5.804804470885517,5.86829710006714,4.562312165896098e-05,6.188338283995287e-06,6.240297644616533e-06,5.80517575875728e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1413
+ 2024-07-17T15:00:47,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,4.033776760101318,5.7249661128613725e-06,1.4192570519736882e-06,42.5,156.75993736818643,5.86829710006714,4.759718610180749e-05,1.3382510705997608e-05,6.468860701842421e-06,6.744855750964752e-05,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1414
+ 2024-07-17T15:03:55,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,191.5793495178223,0.0002310968069457,1.2062720096261454e-06,42.5,2.6003259428716143,5.86829710006714,0.0022616650541623,0.0001488476190779,0.000312149079911,0.0027226617531513,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1415
+ 2024-07-17T15:03:55,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,192.372092962265,0.0002324966467218,1.2085778302962464e-06,42.5,26.874872806814217,5.86829710006714,0.0022710118432839,0.0001547431793499,0.0003133989108699,0.0027391539335039,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1416
+ 2024-07-17T15:03:56,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,192.56004095077515,0.0002331155010658,1.2106120247735502e-06,42.5,93.30912664232316,5.86829710006714,0.0022732188718186,0.0001595629054279,0.0003136631745776,0.0027464449518243,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1417
+ 2024-07-17T15:15:29,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,886.2671768665314,0.0010675091164164,1.204500340620417e-06,42.5,2.6467644724581065,5.86829710006714,0.0104628170041574,0.0006695827578879,0.0014444345128215,0.0125768342748669,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1418
+ 2024-07-17T15:15:29,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,886.3760290145874,0.0010682155856017,1.205149451964921e-06,42.5,237.6293810089968,5.86829710006714,0.0104640784520241,0.000676503874536,0.0014445751988792,0.0125851575254394,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1419
+ 2024-07-17T15:15:30,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,886.502644777298,0.0010690397454211,1.2059070006380908e-06,42.5,227.97767505080697,5.86829710006714,0.0104655847784545,0.0006845205476159,0.001444762019458,0.0125948673455286,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1420
+ 2024-07-17T15:16:44,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,960.772629737854,0.0011584517217644,1.2057501284986605e-06,42.5,2.694092218330511,5.86829710006714,0.0113423706360989,0.0007400986476339,0.0015658032190582,0.0136482725027911,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1421
+ 2024-07-17T15:16:45,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,961.512397289276,0.0011594094170314,1.205818479616206e-06,42.5,6.660629901834282,5.86829710006714,0.0113511040030254,0.0007414636487259,0.0015669879159565,0.013659555567708,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1422
+ 2024-07-17T15:16:45,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,961.5954022407532,0.0011599136868598,1.2062388028862505e-06,42.5,215.5507047010045,5.86829710006714,0.0113520839225914,0.0007463139303839,0.0015670987581981,0.0136654966111736,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1423
+ 2024-07-17T15:16:45,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,961.6797473430634,0.0011602626335213,1.2064958596943584e-06,42.5,131.6612876020488,5.86829710006714,0.0113530678530534,0.0007493264327939,0.0015672134324494,0.0136696077182969,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1424
+ 2024-07-17T15:17:53,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1030.211344242096,0.0012426676079392,1.2062259019807968e-06,42.5,2.633180180588204,5.86829710006714,0.0121621096172266,0.0007994509173379,0.00167889950784,0.0146404600424047,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1425
+ 2024-07-17T15:17:54,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1031.0553894042969,0.0012442087506559,1.206733181788428e-06,42.5,29.452676697748668,5.86829710006714,0.012172056487037,0.0008063164783859,0.001680244014701,0.0146586169801241,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1426
+ 2024-07-17T15:17:54,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1031.1362009048462,0.0012444481580109,1.2068707867291634e-06,42.5,83.56086265415037,5.86829710006714,0.0121729884306589,0.000808098979812,0.0016803501419383,0.0146614375524093,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1427
+ 2024-07-17T15:17:54,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1031.2208242416382,0.0012445430075315,1.2068637272204184e-06,42.5,0.0,5.86829710006714,0.0121739875321586,0.000808098979812,0.0016804685078996,0.0146625550198703,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1428
+ 2024-07-17T15:18:15,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1052.242286682129,0.0012703805064717,1.2073079770225272e-06,42.5,3.765941863596409,5.86829710006714,0.0124221575748589,0.000830087330736,0.0017147140179522,0.0149669589235471,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1429
+ 2024-07-17T15:18:17,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1053.7393333911896,0.001272293475558,1.207408165607196e-06,42.5,5.922794061163417,5.86829710006714,0.012439831042952,0.0008325437215899,0.0017171217606056,0.0149894965251476,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1430
+ 2024-07-17T15:18:17,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1053.8140618801117,0.001272375758649,1.2074006266143731e-06,42.5,0.0,5.86829710006714,0.0124407014636529,0.0008325437215899,0.0017172207562629,0.0149904659415059,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1431
+ 2024-07-17T15:18:17,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1053.8896839618685,0.0012730753265313,1.2079777854409902e-06,42.5,354.9393940193193,5.86829710006714,0.0124415824308991,0.000839802616286,0.0017173228373488,0.014998707884534,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1432
+ 2024-07-17T15:19:37,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1134.2096598148346,0.0013699166716372,1.2078160856617355e-06,42.5,2.7704399712625696,5.86829710006714,0.0133898043680522,0.0009016126657339,0.0018482249464124,0.0161396419801986,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1433
+ 2024-07-17T15:19:38,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1134.8673813343048,0.0013707791503286,1.2078760680538297e-06,42.5,7.547638801111071,5.86829710006714,0.0133975445104969,0.000902985166832,0.0018492735758741,0.0161498032532031,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1434
+ 2024-07-17T15:19:38,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1134.955501794815,0.0013713727584928,1.2083053091721874e-06,42.5,247.4806271975993,5.86829710006714,0.0133985734727647,0.000908837115958,0.0018493862455101,0.0161567968342329,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1435
+ 2024-07-17T15:19:38,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1135.0386083126068,0.0013718487763006,1.2086362228154893e-06,42.5,200.54141535949137,5.86829710006714,0.0133995539777808,0.0009133523973479,0.0018494986520356,0.0161624050271645,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1436
+ 2024-07-17T15:20:43,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1199.9835710525513,0.0014500909624128,1.2084256796456634e-06,42.5,2.7330828236802422,5.86829710006714,0.0141662391192383,0.0009626541034559,0.0019553203332242,0.0170842135559185,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1437
+ 2024-07-17T15:20:44,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1200.8270077705383,0.0014511257886229,1.2084386670458653e-06,42.5,3.9574489153734382,5.86829710006714,0.0141761740098396,0.000963576881972,0.0019566544454673,0.017096405337279,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1438
+ 2024-07-17T15:20:44,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1200.9970183372498,0.0014516859370889,1.2087340059334851e-06,42.5,93.58947852994834,5.86829710006714,0.0141781692321101,0.0009679446632439,0.0019568908182847,0.0171030047136388,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1439
+ 2024-07-17T15:20:44,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1201.1695806980133,0.0014520316897968,1.2088482035593154e-06,42.5,38.6922193450324,5.86829710006714,0.014180194638835,0.0009697668869239,0.0019571166655119,0.0171070781912709,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1440
+ 2024-07-17T15:20:52,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1209.2624125480652,0.0014623698797308,1.2093073137446556e-06,42.5,5.848988175500227,5.86829710006714,0.0142757053370277,0.0009829049529899,0.0019702670498529,0.0172288773398706,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1441
+ 2024-07-17T15:20:55,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1212.3871355056765,0.0014667323839067,1.2097888050379348e-06,42.5,10.967360677839034,5.86829710006714,0.0143125823131865,0.000992415238376,0.0019752765316237,0.0172802740831863,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1442
+ 2024-07-17T15:21:01,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1218.2568962574005,0.0014738684795531,1.2098174728835694e-06,42.5,3.251859922760781,5.86829710006714,0.0143818305348356,0.0009977119092799,0.001984805386951,0.0173643478310666,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1443
+ 2024-07-17T15:21:04,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1220.667111158371,0.0014773620987817,1.2102907379717832e-06,42.5,13.110175650587282,5.86829710006714,0.0144103094380762,0.0010064933051939,0.0019887050829499,0.0174055078262202,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1444
+ 2024-07-17T15:21:11,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1227.9643740653992,0.0014868009811782,1.2107851111803208e-06,42.5,6.690056094989008,5.86829710006714,0.0144963407736685,0.0010199447048439,0.0020004263250931,0.0175167118036056,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1445
+ 2024-07-17T15:21:11,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1228.1723222732544,0.0014873163428818,1.2109997236616988e-06,42.5,58.42924482911878,5.86829710006714,0.0144987839215331,0.001023271096394,0.0020007285078195,0.0175227835257467,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1446
+ 2024-07-17T15:21:12,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1228.5560011863708,0.0014878021058676,1.2110169210283873e-06,42.5,5.797534475133485,5.86829710006714,0.0145033016595575,0.00102388415244,0.0020013207192724,0.01752850653127,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1447
+ 2024-07-17T15:21:12,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1228.8657820224762,0.0014886067393203,1.211366416981999e-06,42.5,167.32915904605605,5.86829710006714,0.0145052234810259,0.0010312180471959,0.0020015447736943,0.0175379863019162,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1448
+ 2024-07-17T15:21:12,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1229.3881855010986,0.0014895695458218,1.2116348305516909e-06,42.5,30.45251781601933,5.86829710006714,0.0145113744924465,0.0010356002729239,0.0020023548193544,0.017549329584725,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1449
+ 2024-07-17T15:21:16,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1232.923053264618,0.0014939555240111,1.2117183793873925e-06,42.5,4.314507483451078,5.86829710006714,0.0145530939737955,0.0010398319429759,0.0020080769698218,0.0176010028865933,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1450
+ 2024-07-17T15:21:16,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1233.1017022132874,0.0014945429441437,1.2120192044672346e-06,42.5,96.21411249396292,5.86829710006714,0.0145551554926567,0.0010444455577779,0.0020083225130349,0.0176079235634696,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
1451
+ 2024-07-17T15:21:16,codecarbon,ab520cd3-474e-4d7f-942c-88ee3dcfc7b0,1233.260731935501,0.0014949375877988435,1.2121829140320247e-06,42.5,58.38852826554894,5.86829710006714,0.014557033042278554,0.0010469925042599984,0.0020085475021406774,0.017612573048679216,France,FRA,nouvelle-aquitaine,,,Windows-11-10.0.22631-SP0,3.12.3,2.5.0,16.0,12th Gen Intel(R) Core(TM) i5-12500H,1.0,1 x NVIDIA GeForce RTX 4050 Laptop GPU,-0.6455,44.8152,15.648792266845703,machine,N,1.0
empreinte_carbone.py ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from comparateur import get_table_empreintes_detailed
3
+ from comparateur import *
4
+ import base64
5
+ import pandas as pd
6
+ import altair as alt
7
+
8
+ # Function to read and encode an SVG file to Base64
9
+ def load_svg_as_base64(file_path):
10
+ with open(file_path, "rb") as f:
11
+ svg_data = f.read()
12
+ return base64.b64encode(svg_data).decode()
13
+
14
+ def color_scale(val):
15
+ if val <= 1:
16
+ color = 'rgba(0,238,0,0.5)' # green with opacity
17
+ elif val <= 10:
18
+ color = 'rgba(110,238,0,0.5)' # light green with opacity
19
+ elif val <= 50:
20
+ color = 'rgba(255,255,0,0.5)' # light yellow with opacity
21
+ elif val <= 100:
22
+ color = 'rgba(255,165,0,0.5)' # light orange with opacity
23
+ else:
24
+ color = 'rgba(255,99,71,0.5)' # light red with opacity
25
+ return f'background-color: {color}'
26
+
27
+ def display_cf_comparison(stm: st):
28
+ svg_file_path = "feuille.svg"
29
+ svg_base64 = load_svg_as_base64(svg_file_path)
30
+ stm.markdown(
31
+ f"""
32
+ **Votre consommation Carbone**
33
+ <img src='data:image/svg+xml;base64,{svg_base64}' alt='svg' width='15' height='15' style='margin-left: 10px;'>
34
+ """,
35
+ unsafe_allow_html=True
36
+ )
37
+
38
+ serveur_emission = st.session_state['emission'].stop()
39
+ emission_api = sum([value["el"] for value in st.session_state["partial_emissions"].values()])
40
+
41
+ total_emission = serveur_emission + emission_api
42
+
43
+ pourcentage_api = emission_api / total_emission
44
+ pourcentage_serveur = serveur_emission / total_emission
45
+
46
+
47
+
48
+ stm.markdown(f"<div style='text-align: center; margin-bottom: 10px;'><b>{total_emission*1000:.3f}</b> g eq. CO2</div>", unsafe_allow_html=True)
49
+ stm.markdown("Dont :")
50
+ stm.markdown(f"- Empreinte serveur (via CodeCarbon) : **{serveur_emission*1000:.3f}** g eq. CO2 ({pourcentage_serveur:.2%})")
51
+ stm.write(f"- Empreinte IA (via EcoLogits) : **{emission_api*1000:.3f}** g eq. CO2 ({pourcentage_api:.2%})")
52
+ # stm.markdown("(avec l'outil CodeCarbon)")
53
+ c1,c2,c3 = stm.columns([1,1,1])
54
+
55
+ c2.write("---")
56
+
57
+ stm.markdown("**Votre équivalence**")
58
+ col1,col2,col3 = stm.columns([1,1,1])
59
+ display_comparaison(col1,total_emission,dict_comparaison_1kgCO2["eau en litre"][0]*1000,dict_comparaison_1kgCO2["eau en litre"][1],"ml")
60
+ display_comparaison(col2,total_emission,dict_comparaison_1kgCO2["tgv en km"][0],dict_comparaison_1kgCO2["tgv en km"][1],"km")
61
+ display_comparaison(col3,total_emission,dict_comparaison_1kgCO2["voiture en km"][0]*1000,dict_comparaison_1kgCO2["voiture en km"][1],"m")
62
+ stm.markdown("\n")
63
+ stm.markdown(
64
+ f"""
65
+ Powered by **ADEME**
66
+ <a href='https://www.ademe.fr' target='_blank'><img src='https://www.ademe.fr/wp-content/uploads/2022/11/ademe-logo-2022-1.svg' alt='svg' width='30' height='30' style='margin-left: 10px;'>
67
+ """,
68
+ unsafe_allow_html=True
69
+ )
70
+
71
+ def display_carbon_footprint():
72
+
73
+ st.title("EMPREINTE ENERGETIQUE DE L'APPLICATION IA CARTO RSE")
74
+ display_cf_comparison(st)
75
+ table = get_table_empreintes_detailed()
76
+ styled_df = table[['Consommation Totale']].rename(columns={'Consommation Totale': 'Consommation Cumulée (g eqCo2)'})
77
+ styled_df = styled_df.style.applymap(color_scale, subset=['Consommation Cumulée (g eqCo2)'])
78
+ st.markdown("### DETAIL PAR TACHE")
79
+ st.table(styled_df)
80
+ with st.expander("Voir le détail de l'empreinte carbone"):
81
+ st.table(table)
82
+
83
+ st.markdown("### SYNTHESE (Dialogue IA et non IA)")
84
+
85
+ serveur_emission = st.session_state['emission'].stop()
86
+ emission_api = sum([value["el"] for value in st.session_state["partial_emissions"].values()])
87
+
88
+ total_emission = serveur_emission + emission_api
89
+
90
+ pourcentage_api = emission_api / total_emission
91
+ pourcentage_serveur = serveur_emission / total_emission
92
+
93
+ df = pd.DataFrame({"Categorie": ["Identification + dessin","Dialogue avec IA"], "valeur": [pourcentage_serveur, pourcentage_api]})
94
+ base=alt.Chart(df).encode(
95
+ theta=alt.Theta(field="valeur", type="quantitative", stack=True),
96
+ color=alt.Color(field="Categorie", type="nominal")
97
+ )
98
+
99
+
100
+ pie = base.mark_arc(outerRadius=100)
101
+ text = base.mark_text(radius=115,fill= "black").encode(alt.Text(field="valeur", type="quantitative", format=",.1f"))
102
+
103
+ chart = alt.layer(pie, text, data=df).resolve_scale(theta="independent")
104
+ st.altair_chart(chart, use_container_width=True)
105
+
requirements.txt CHANGED
@@ -25,7 +25,7 @@ InstructorEmbedding
25
  sentence-transformers==2.2.2
26
  langchainhub
27
  plotly==5.22.0
28
- pandas
29
  altair[all]
30
  streamlit-vertical-slider
31
  streamlit_toggle
 
25
  sentence-transformers==2.2.2
26
  langchainhub
27
  plotly==5.22.0
28
+ altair
29
  altair[all]
30
  streamlit-vertical-slider
31
  streamlit_toggle