Ilyas KHIAT
commited on
Commit
·
0dc8c45
1
Parent(s):
398dd6d
emission detailed
Browse files- app.py +3 -0
- chat_with_pps.py +62 -38
- comparateur.py +25 -0
- documentations.py +4 -0
- emissions.csv +160 -9
- export_doc.py +5 -0
- high_chart.py +1 -0
- partie_prenante_carte.py +3 -0
- temp.html +0 -0
app.py
CHANGED
@@ -26,6 +26,8 @@ from high_chart import test_chart
|
|
26 |
from chat_te import display_chat_te
|
27 |
from comparateur import *
|
28 |
import base64
|
|
|
|
|
29 |
|
30 |
# Function to read and encode an SVG file to Base64
|
31 |
def load_svg_as_base64(file_path):
|
@@ -133,6 +135,7 @@ def main():
|
|
133 |
|
134 |
elif section_principale == "Documentation":
|
135 |
display_documentation()
|
|
|
136 |
|
137 |
#consommation carbone
|
138 |
st.sidebar.markdown("---")
|
|
|
26 |
from chat_te import display_chat_te
|
27 |
from comparateur import *
|
28 |
import base64
|
29 |
+
import pandas as pd
|
30 |
+
|
31 |
|
32 |
# Function to read and encode an SVG file to Base64
|
33 |
def load_svg_as_base64(file_path):
|
|
|
135 |
|
136 |
elif section_principale == "Documentation":
|
137 |
display_documentation()
|
138 |
+
|
139 |
|
140 |
#consommation carbone
|
141 |
st.sidebar.markdown("---")
|
chat_with_pps.py
CHANGED
@@ -86,7 +86,7 @@ def get_response(user_query, chat_history, context,llm=None,history_limit=5,stre
|
|
86 |
elif llm == "Mistral (FR)":
|
87 |
llm = ChatMistralAI(model_name="mistral-large-latest")
|
88 |
|
89 |
-
chain = prompt | llm
|
90 |
|
91 |
if not stream:
|
92 |
return chain.invoke({
|
@@ -94,6 +94,8 @@ def get_response(user_query, chat_history, context,llm=None,history_limit=5,stre
|
|
94 |
"chat_history": chat_history[-history_limit:],
|
95 |
"user_question": user_query,
|
96 |
})
|
|
|
|
|
97 |
|
98 |
if history_limit:
|
99 |
return chain.stream({
|
@@ -108,56 +110,71 @@ def get_response(user_query, chat_history, context,llm=None,history_limit=5,stre
|
|
108 |
"user_question": user_query,
|
109 |
})
|
110 |
|
|
|
111 |
def get_response_with_impact(user_query, chat_history, context,llm=None,history_limit=5,stream=True):
|
112 |
model_vs_provider = {
|
113 |
"Mistral (FR)": ["mistral-large-latest","mistralai"],
|
114 |
"GPT-4o": ["gpt-4o","openai"]
|
115 |
}
|
116 |
|
117 |
-
|
118 |
-
response_generator = get_response(user_query, chat_history, context,llm,history_limit,stream)
|
119 |
-
request_latency_invoke = time.perf_counter() - start
|
120 |
-
wrapped_response_generator, token_count_generator = itertools.tee(response_generator)
|
121 |
|
122 |
-
|
|
|
|
|
|
|
123 |
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
try:
|
128 |
-
final_response = st.write_stream(wrapped_response_generator)
|
129 |
-
|
130 |
-
finally:
|
131 |
-
token_count = len(list(token_count_generator))
|
132 |
-
else:
|
133 |
-
final_response = response_generator
|
134 |
-
token_count = len(list(token_count_generator))
|
135 |
-
|
136 |
-
request_latency_stream = time.perf_counter() - start
|
137 |
|
138 |
-
|
139 |
-
|
140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
|
142 |
-
if not stream:
|
143 |
-
request_latency = request_latency_invoke
|
144 |
else:
|
145 |
-
|
|
|
|
|
|
|
146 |
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
|
158 |
-
|
159 |
|
160 |
-
|
161 |
|
162 |
|
163 |
def display_chart():
|
@@ -192,13 +209,16 @@ def disp_carto_in_chat():
|
|
192 |
@st.experimental_dialog("Télécharger",width="small")
|
193 |
def dowmload_history(used_models=None):
|
194 |
brand_name = st.session_state['Nom de la marque']
|
|
|
195 |
format = st.radio("Choisissez le document à télécharger",[f"Rapport des parties prenantes (PDF)",f"Tableau des parties prenantes (CSV)",f"Historique de conversation (Fichier Texte)"],index=None)
|
196 |
if format == f"Rapport des parties prenantes (PDF)":
|
197 |
with st.spinner("Generation en cours..."):
|
198 |
summary = get_response("Donne moi un RESUME de la Conversation", st.session_state.chat_history,format_context(st.session_state['pp_grouped'],st.session_state['Nom de la marque']),st.session_state.model)
|
199 |
summary = ''.join(summary)
|
200 |
pdf = export_conversation(AIMessage(content=summary).content,used_models=used_models)
|
201 |
-
|
|
|
|
|
202 |
if pdf:
|
203 |
st.download_button("Télécharger le PDF", data=pdf, file_name=f"Cartographie {brand_name}.pdf", mime="application/pdf")
|
204 |
|
@@ -375,6 +395,8 @@ def display_chat():
|
|
375 |
with st.spinner("Proposition de prompts..."):
|
376 |
propositions_prompts = get_response_with_impact(generated_prompt_question, st.session_state.chat_history,format_context(st.session_state['pp_grouped'],st.session_state['Nom de la marque']),st.session_state.model,history_limit=1,stream=False)
|
377 |
extract_format_prompts_from_response(propositions_prompts)
|
|
|
|
|
378 |
|
379 |
|
380 |
if "pp_grouped" not in st.session_state or st.session_state['pp_grouped'] is None or len(st.session_state['pp_grouped']) == 0:
|
@@ -406,6 +428,8 @@ def display_chat():
|
|
406 |
with st.spinner("Proposition de prompts..."):
|
407 |
propositions_prompts = get_response_with_impact(generated_prompt_question, st.session_state.chat_history,format_context(st.session_state['pp_grouped'],st.session_state['Nom de la marque']),st.session_state.model,history_limit=1,stream=False)
|
408 |
extract_format_prompts_from_response(propositions_prompts)
|
|
|
|
|
409 |
|
410 |
|
411 |
|
|
|
86 |
elif llm == "Mistral (FR)":
|
87 |
llm = ChatMistralAI(model_name="mistral-large-latest")
|
88 |
|
89 |
+
chain = prompt | llm
|
90 |
|
91 |
if not stream:
|
92 |
return chain.invoke({
|
|
|
94 |
"chat_history": chat_history[-history_limit:],
|
95 |
"user_question": user_query,
|
96 |
})
|
97 |
+
|
98 |
+
chain = chain | StrOutputParser()
|
99 |
|
100 |
if history_limit:
|
101 |
return chain.stream({
|
|
|
110 |
"user_question": user_query,
|
111 |
})
|
112 |
|
113 |
+
|
114 |
def get_response_with_impact(user_query, chat_history, context,llm=None,history_limit=5,stream=True):
|
115 |
model_vs_provider = {
|
116 |
"Mistral (FR)": ["mistral-large-latest","mistralai"],
|
117 |
"GPT-4o": ["gpt-4o","openai"]
|
118 |
}
|
119 |
|
120 |
+
if not stream:
|
|
|
|
|
|
|
121 |
|
122 |
+
start = time.perf_counter()
|
123 |
+
response = get_response(user_query, chat_history, context,llm,history_limit,stream)
|
124 |
+
request_latency = time.perf_counter() - start
|
125 |
+
token_count = response.response_metadata["token_usage"]["completion_tokens"]
|
126 |
|
127 |
+
nbre_out_tokens = token_count
|
128 |
+
model_name = model_vs_provider[st.session_state.model][0]
|
129 |
+
model_provider = model_vs_provider[st.session_state.model][1]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
|
131 |
+
impact = compute_llm_impacts(
|
132 |
+
provider=model_provider,
|
133 |
+
model_name=model_name,
|
134 |
+
output_token_count=nbre_out_tokens,
|
135 |
+
request_latency=request_latency,
|
136 |
+
)
|
137 |
+
|
138 |
+
print(f"Request latency: {request_latency:.3f} s")
|
139 |
+
print(f"Output token count: {nbre_out_tokens}")
|
140 |
+
print(f"Impact: {impact.gwp.value} {impact.gwp.unit}")
|
141 |
+
|
142 |
+
st.session_state["partial_emissions"]["chatbot"]["el"] += impact.gwp.value
|
143 |
+
|
144 |
+
return response.content
|
145 |
|
|
|
|
|
146 |
else:
|
147 |
+
start = time.perf_counter()
|
148 |
+
response_generator = get_response(user_query, chat_history, context,llm,history_limit,stream)
|
149 |
+
wrapped_response_generator, token_count_generator = itertools.tee(response_generator)
|
150 |
+
token_count = 0
|
151 |
|
152 |
+
final_response = st.write_stream(wrapped_response_generator)
|
153 |
+
|
154 |
+
request_latency = time.perf_counter() - start
|
155 |
+
|
156 |
+
for _ in token_count_generator:
|
157 |
+
token_count += 1
|
158 |
+
|
159 |
+
nbre_out_tokens = token_count
|
160 |
+
model_name = model_vs_provider[st.session_state.model][0]
|
161 |
+
model_provider = model_vs_provider[st.session_state.model][1]
|
162 |
+
|
163 |
+
|
164 |
+
impact = compute_llm_impacts(
|
165 |
+
provider=model_provider,
|
166 |
+
model_name=model_name,
|
167 |
+
output_token_count=nbre_out_tokens,
|
168 |
+
request_latency=request_latency,
|
169 |
+
)
|
170 |
+
|
171 |
+
print(f"Request latency: {request_latency:.3f} s")
|
172 |
+
print(f"Output token count: {nbre_out_tokens}")
|
173 |
+
print(f"Impact: {impact.gwp.value} {impact.gwp.unit}")
|
174 |
|
175 |
+
st.session_state["partial_emissions"]["chatbot"]["el"] += impact.gwp.value
|
176 |
|
177 |
+
return final_response
|
178 |
|
179 |
|
180 |
def display_chart():
|
|
|
209 |
@st.experimental_dialog("Télécharger",width="small")
|
210 |
def dowmload_history(used_models=None):
|
211 |
brand_name = st.session_state['Nom de la marque']
|
212 |
+
|
213 |
format = st.radio("Choisissez le document à télécharger",[f"Rapport des parties prenantes (PDF)",f"Tableau des parties prenantes (CSV)",f"Historique de conversation (Fichier Texte)"],index=None)
|
214 |
if format == f"Rapport des parties prenantes (PDF)":
|
215 |
with st.spinner("Generation en cours..."):
|
216 |
summary = get_response("Donne moi un RESUME de la Conversation", st.session_state.chat_history,format_context(st.session_state['pp_grouped'],st.session_state['Nom de la marque']),st.session_state.model)
|
217 |
summary = ''.join(summary)
|
218 |
pdf = export_conversation(AIMessage(content=summary).content,used_models=used_models)
|
219 |
+
|
220 |
+
st.session_state["partial_emissions"]["download_rapport"]["cc"] += st.session_state["emission"].stop()
|
221 |
+
|
222 |
if pdf:
|
223 |
st.download_button("Télécharger le PDF", data=pdf, file_name=f"Cartographie {brand_name}.pdf", mime="application/pdf")
|
224 |
|
|
|
395 |
with st.spinner("Proposition de prompts..."):
|
396 |
propositions_prompts = get_response_with_impact(generated_prompt_question, st.session_state.chat_history,format_context(st.session_state['pp_grouped'],st.session_state['Nom de la marque']),st.session_state.model,history_limit=1,stream=False)
|
397 |
extract_format_prompts_from_response(propositions_prompts)
|
398 |
+
st.session_state["partial_emissions"]["chatbot"]["cc"] += st.session_state["emission"].stop()
|
399 |
+
|
400 |
|
401 |
|
402 |
if "pp_grouped" not in st.session_state or st.session_state['pp_grouped'] is None or len(st.session_state['pp_grouped']) == 0:
|
|
|
428 |
with st.spinner("Proposition de prompts..."):
|
429 |
propositions_prompts = get_response_with_impact(generated_prompt_question, st.session_state.chat_history,format_context(st.session_state['pp_grouped'],st.session_state['Nom de la marque']),st.session_state.model,history_limit=1,stream=False)
|
430 |
extract_format_prompts_from_response(propositions_prompts)
|
431 |
+
st.session_state["partial_emissions"]["chatbot"]["cc"] += st.session_state["emission"].stop()
|
432 |
+
|
433 |
|
434 |
|
435 |
|
comparateur.py
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
|
|
|
|
|
|
|
2 |
dict_comparaison_1kgCO2 = {
|
3 |
"eau en litre":[374/100,"https://impactco2.fr/icons/eauenbouteille.svg"],
|
4 |
"smartphones": [1.16/100,"https://impactco2.fr/icons/smartphone.svg"],
|
@@ -14,3 +17,25 @@ def display_comparaison(container,value_init, ratio_equivalent,icon, unit):
|
|
14 |
link_url = f"https://impactco2.fr/outils/comparateur?value={value_init}&comparisons=tgv,eauenbouteille,voiturethermique"
|
15 |
container.markdown(f"<div style='text-align: center;'><a href='{link_url}' target='_blank'><img src='{icon}' alt='{unit}' width='50'></div>", unsafe_allow_html=True)
|
16 |
container.markdown(f"<div style='text-align: center;'><b>{compare(value_init, ratio_equivalent):.2f}</b> {unit}</div>", unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
+
import streamlit as st
|
3 |
+
import pandas as pd
|
4 |
+
|
5 |
dict_comparaison_1kgCO2 = {
|
6 |
"eau en litre":[374/100,"https://impactco2.fr/icons/eauenbouteille.svg"],
|
7 |
"smartphones": [1.16/100,"https://impactco2.fr/icons/smartphone.svg"],
|
|
|
17 |
link_url = f"https://impactco2.fr/outils/comparateur?value={value_init}&comparisons=tgv,eauenbouteille,voiturethermique"
|
18 |
container.markdown(f"<div style='text-align: center;'><a href='{link_url}' target='_blank'><img src='{icon}' alt='{unit}' width='50'></div>", unsafe_allow_html=True)
|
19 |
container.markdown(f"<div style='text-align: center;'><b>{compare(value_init, ratio_equivalent):.2f}</b> {unit}</div>", unsafe_allow_html=True)
|
20 |
+
|
21 |
+
def get_table_empreintes_detailed() -> pd.DataFrame:
|
22 |
+
emissions_data = st.session_state["partial_emissions"]
|
23 |
+
emissions_df = pd.DataFrame(emissions_data).T # Transpose to match the desired format
|
24 |
+
|
25 |
+
# Rename columns and index values
|
26 |
+
emissions_df = emissions_df.rename(columns={"cc": "CodeCarbon (Cumulative)", "el": "EcoLogits (par requete)"})
|
27 |
+
emissions_df = emissions_df.applymap(lambda x: x * 1000)
|
28 |
+
emissions_df = emissions_df.round(2)
|
29 |
+
emissions_df = emissions_df.rename(index={
|
30 |
+
"Scrapping": "Collecte de Documents et scrapping",
|
31 |
+
"extraction_pp": "Extraction des parties prenantes",
|
32 |
+
"cartographie": "Sauvegarde de la cartographie",
|
33 |
+
"chatbot": "Dialogue avec ChatBot IA",
|
34 |
+
"download_rapport": "Téléchargement Cartographie"
|
35 |
+
})
|
36 |
+
|
37 |
+
# Make Ecologits column cumulative
|
38 |
+
emissions_df["EcoLogits (Cumulative)"] = emissions_df["EcoLogits (par requete)"].cumsum()
|
39 |
+
emissions_df['Consommation Totale'] = emissions_df["CodeCarbon (Cumulative)"] + emissions_df["EcoLogits (Cumulative)"]
|
40 |
+
|
41 |
+
return emissions_df
|
documentations.py
CHANGED
@@ -1,10 +1,14 @@
|
|
1 |
import streamlit as st
|
|
|
2 |
|
3 |
def display_documentation():
|
4 |
|
5 |
st.markdown("<hr style='border-color: darkgrey;'>", unsafe_allow_html=True) # Add this line
|
6 |
|
7 |
st.title("OPEN DATA IA RSE Bordeaux Métropole")
|
|
|
|
|
|
|
8 |
st.markdown("## La Data et l'IA au service des démarches RSE (Economie, Social, Environnemental)")
|
9 |
|
10 |
st.image("DATA IA RSE Bordeaux Metropole.png", caption="Data IA RSE Bordeaux Metropole")
|
|
|
1 |
import streamlit as st
|
2 |
+
from comparateur import get_table_empreintes_detailed
|
3 |
|
4 |
def display_documentation():
|
5 |
|
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")
|
emissions.csv
CHANGED
@@ -20,7 +20,7 @@ timestamp,project_name,run_id,duration,emissions,emissions_rate,cpu_power,gpu_po
|
|
20 |
2024-07-02T16:09:03,codecarbon,a358c92d-663a-4ee4-9e0e-20ed6d767cc3,0.0515203475952148,5.88617055498662e-07,1.142494340533782e-05,42.5,511.12392316749856,5.86829710006714,5.845859646797181e-07,6.320005056001388e-06,3.018737560845845e-08,6.934778396289564e-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
|
21 |
2024-07-02T16:09:07,codecarbon,1dba5bfa-c84b-4d06-913a-bde55260b5ee,0.0635650157928466,6.928946357223358e-07,1.0900565776313565e-05,42.5,438.0436708713923,5.86829710006714,7.386662893825108e-07,7.370839229997594e-06,5.381680678226532e-08,8.16332232616237e-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
|
22 |
2024-07-02T16:09:11,codecarbon,236cd340-1fe3-40d7-a676-0193147ec3ac,0.0700438022613525,4.85891445439375e-07,6.936965580857268e-06,42.5,272.310994144723,5.86829710006714,8.151069283485413e-07,4.845837209999093e-06,6.357482911634331e-08,5.724518967463977e-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
|
23 |
-
2024-07-02T16:40:47,codecarbon,34199290-f890-4f29-80b7-698da3fcd3cf,0.0210487842559814,2.
|
24 |
2024-07-02T16:40:47,codecarbon,34199290-f890-4f29-80b7-698da3fcd3cf,0.0481131076812744,5.010462680666598e-08,1.041392444208435e-06,42.5,0.0,5.86829710006714,5.68001965681712e-07,0.0,2.2304550731841283e-08,5.903065164135532e-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
|
25 |
2024-07-02T16:43:18,codecarbon,23da81a5-a00e-4713-a76a-153ee49be617,0.0378229618072509,3.825573869578848e-08,1.0114421734274268e-06,42.5,0.0,5.86829710006714,4.346966743469239e-07,0.0,1.6012437397895006e-08,4.5070911174481883e-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
|
26 |
2024-07-02T16:43:24,codecarbon,23da81a5-a00e-4713-a76a-153ee49be617,5.281776666641235,6.936743131070106e-06,1.3133351841400916e-06,42.5,7.475454992061839,5.86829710006714,6.233068721161949e-05,1.088084203799966e-05,8.513551525014216e-06,8.172508077463337e-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
|
@@ -177,7 +177,7 @@ timestamp,project_name,run_id,duration,emissions,emissions_rate,cpu_power,gpu_po
|
|
177 |
2024-07-03T15:44:07,codecarbon,a8d63045-78f7-4a6e-aca1-951c939030d6,0.0322246551513671,3.318625797677172e-08,1.029840593200692e-06,42.5,0.0,5.86829710006714,3.804299566480849e-07,0.0,1.0553183784433411e-08,3.909831404325183e-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
|
178 |
2024-07-03T15:44:07,codecarbon,a8d63045-78f7-4a6e-aca1-951c939030d6,0.0904645919799804,5.923303000640177e-07,6.547647948217116e-06,42.5,382.04120211704776,5.86829710006714,1.0561800665325589e-06,5.862504689993497e-06,5.984114580570577e-08,6.978525902331762e-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
|
179 |
2024-07-03T15:45:28,codecarbon,f3810609-3149-4f43-a2db-4b12c9412db6,0.0234465599060058,2.3245217399153613e-08,9.914127058442945e-07,42.5,0.0,5.86829710006714,2.649949656592475e-07,0.0,8.868032245459291e-09,2.738629979047068e-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
|
180 |
-
2024-07-03T15:45:28,codecarbon,f3810609-3149-4f43-a2db-4b12c9412db6,0.0559644699096679,7.45195240415923e-07,1.3315506099115025e-05,42.5,989.0123602356176,5.86829710006714,6.370935175153945e-07,8.116395381993491e-06,2.
|
181 |
2024-07-03T15:47:09,codecarbon,09708e23-bae6-45bc-b2d3-0751d165bfc0,0.042006492614746,4.2632362549308526e-08,1.0148993618749005e-06,42.5,0.0,5.86829710006714,4.84333270125919e-07,0.0,1.7938935594088437e-08,5.022722057200075e-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
|
182 |
2024-07-03T15:47:09,codecarbon,09708e23-bae6-45bc-b2d3-0751d165bfc0,0.1058070659637451,7.131657477154608e-07,6.740246893906194e-06,42.5,428.3836836353148,5.86829710006714,1.2154618899027508e-06,7.116116803984607e-06,7.056727526238168e-08,8.40214596914974e-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
|
183 |
2024-07-03T15:47:09,codecarbon,09708e23-bae6-45bc-b2d3-0751d165bfc0,0.1724567413330078,1.1470019719315802e-06,6.650954686176984e-06,42.5,241.82881406898045,5.86829710006714,1.990516152646806e-06,1.1391953557995936e-05,1.3090782598681016e-07,1.3513377536629555e-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
|
@@ -412,7 +412,7 @@ timestamp,project_name,run_id,duration,emissions,emissions_rate,cpu_power,gpu_po
|
|
412 |
2024-07-03T17:47:00,codecarbon,dde5f579-1a17-44e4-8538-835f21e16377,595.662139415741,0.0007881706346789,1.3231840376023824e-06,42.5,393.49265773578855,5.86829710006714,0.007031497131288,0.00128579825086,0.0009685189497714,0.0092858143319194,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
|
413 |
2024-07-03T17:47:00,codecarbon,dde5f579-1a17-44e4-8538-835f21e16377,595.7421896457672,0.0007885355690941,1.3236188116256563e-06,42.5,153.59797407461227,5.86829710006714,0.007032430262698,0.001289084920156,0.0009685986155436,0.0092901137983976,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
|
414 |
2024-07-03T17:47:00,codecarbon,dde5f579-1a17-44e4-8538-835f21e16377,595.8289866447449,0.000788698633409,1.3236996706898205e-06,42.5,34.359851885519866,5.86829710006714,0.0070334550592634,0.001289894365248,0.0009686855123881,0.0092920349368995,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
|
415 |
-
2024-07-04T12:20:49,codecarbon,2500e51a-13c2-44e7-bb45-70076c372a93,0.07027268409729,6.869397130761747e-07,9.775344743131356e-06,42.5,388.9209930064765,5.86829710006714,8.29608076148563e-07,7.216116883999868e-06,4.
|
416 |
2024-07-04T12:20:49,codecarbon,2500e51a-13c2-44e7-bb45-70076c372a93,0.1789605617523193,1.1358992778473794e-06,6.347204471896212e-06,42.5,132.40355548614227,5.86829710006714,2.0970736940701804e-06,1.1091119984000131e-05,1.943777217739277e-07,1.338257139984424e-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.5806,44.8412,15.648792266845703,machine,N,1.0
|
417 |
2024-07-04T12:20:49,codecarbon,24dfd19b-af23-44a3-8d45-30c0ed9c1d88,0.2649962902069092,1.570229985394217e-06,5.925479123380109e-06,42.5,155.21402314170305,5.86829710006714,2.8097071581416666e-06,1.53919567580001e-05,2.979647952499439e-07,1.8499628711391708e-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.5806,44.8412,15.648792266845703,machine,N,1.0
|
418 |
.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
@@ -526,12 +526,12 @@ timestamp,project_name,run_id,duration,emissions,emissions_rate,cpu_power,gpu_po
|
|
526 |
2024-07-08T17:00:59,codecarbon,45220eec-4fac-45d3-b34c-158c4e104d75,0.1349787712097168,6.001336119891418e-07,4.446133318673593e-06,42.5,0.0,5.86829710006714,1.5816918677753874e-06,5.365837626031267e-06,1.2293094975584988e-07,7.070460443562504e-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
|
527 |
2024-07-08T17:01:00,codecarbon,45220eec-4fac-45d3-b34c-158c4e104d75,0.2441818714141845,1.4480822513269008e-06,5.930342997783992e-06,42.5,291.06972883137706,5.86829710006714,2.858955330318875e-06,1.3954455608033989e-05,2.471370337827731e-07,1.7060547972135637e-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
|
528 |
2024-07-08T17:01:00,codecarbon,45220eec-4fac-45d3-b34c-158c4e104d75,0.3711433410644531,1.6418596757075262e-06,4.423788585290553e-06,42.5,20.097130258863576,5.86829710006714,4.326515396436056e-06,1.4631678372040158e-05,3.853385034346957e-07,1.9343532271910908e-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
|
529 |
-
2024-07-08T17:02:35,codecarbon,b8f8cbdc-9f31-4da3-acd3-80602a08c0fd,0.0423014163970947,4.
|
530 |
2024-07-08T17:02:52,codecarbon,c5364909-a83b-4666-bbce-b464284071b0,0.0286540985107421,2.900235734770373e-08,1.0121538926388137e-06,42.5,0.0,5.86829710006714,3.264756666289436e-07,0.0,1.5214944095779024e-08,3.416906107247227e-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
|
531 |
2024-07-08T17:02:52,codecarbon,c5364909-a83b-4666-bbce-b464284071b0,0.0828087329864502,3.18523463876335e-07,3.8464960444263074e-06,42.5,192.0853855846001,5.86829710006714,9.539711806509232e-07,2.7294466280192164e-06,6.92591064247002e-08,3.75267691509484e-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
|
532 |
2024-07-08T17:02:52,codecarbon,c5364909-a83b-4666-bbce-b464284071b0,0.1378135681152343,3.777571658485779e-07,2.741073836305522e-06,42.5,0.0,5.86829710006714,1.5915206736988497e-06,2.7294466280192164e-06,1.2957012036016145e-07,4.450537422078227e-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
|
533 |
2024-07-08T17:02:52,codecarbon,c5364909-a83b-4666-bbce-b464284071b0,0.1923952102661132,9.793295487046924e-07,5.090197138224612e-06,42.5,437.21840499553525,5.86829710006714,2.235887282424503e-06,9.116118404012274e-06,1.859430253139749e-07,1.1537948711750754e-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
|
534 |
-
2024-07-08T17:03:11,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,0.0459609031677246,4.6776760542461504e-08,1.017751117112725e-06,42.5,0.0,5.86829710006714,5.307892958323162e-07,0.0,2.
|
535 |
2024-07-08T17:03:11,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,0.1564986705780029,5.006202565999529e-07,3.198878653415979e-06,42.5,134.30780976311385,5.86829710006714,1.812232534090678e-06,3.937503150003296e-06,1.4831043567596686e-07,5.898046119769941e-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
|
536 |
2024-07-08T17:03:12,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,0.2708563804626465,1.051488105061046e-06,3.882087264346559e-06,42.5,167.52374212394705,5.86829710006714,3.12683814101749e-06,8.985007187989336e-06,2.7623776647080456e-07,1.2388083095477633e-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
|
537 |
2024-07-08T17:03:12,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,0.3939921855926513,1.6872880290704734e-06,4.282541864459619e-06,42.5,177.03545758747748,5.86829710006714,4.568514559004042e-06,1.4884178574009477e-05,4.26052246532341e-07,1.987874537954586e-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
|
@@ -547,7 +547,7 @@ timestamp,project_name,run_id,duration,emissions,emissions_rate,cpu_power,gpu_po
|
|
547 |
2024-07-08T17:06:08,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,176.52826166152954,0.000216135507687,1.224367733827376e-06,42.5,214.06924850912523,5.86829710006714,0.0020838292429844,0.0001755281959779,0.0002870381086643,0.0025463955476267,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
|
548 |
2024-07-08T17:06:08,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,176.63074350357056,0.0002163352356835,1.2247881166802047e-06,42.5,39.42943404398464,5.86829710006714,0.0020850274509853,0.000176574030148,0.0002871471573232,0.0025487486384566,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
|
549 |
2024-07-08T17:06:08,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,176.73398518562317,0.0002164677404123,1.224822380285137e-06,42.5,9.956332964041668,5.86829710006714,0.0020862047882543,0.0001768443081419,0.0002872606434961,0.0025503097398924,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
|
550 |
-
2024-07-08T17:06:16,codecarbon,7899baa8-d3bd-43eb-8c24-f17c325095a9,0.0378346443176269,3.852238079166996e-08,1.0181774267063108e-06,42.5,0.0,5.86829710006714,4.348374075359769e-07,0.0,1.
|
551 |
2024-07-08T17:06:17,codecarbon,7899baa8-d3bd-43eb-8c24-f17c325095a9,0.1249358654022216,7.929666964401108e-07,6.3469900647601375e-06,42.5,328.48762186136906,5.86829710006714,1.4631157120068869e-06,7.764728434028756e-06,1.1447487798809185e-07,9.342319024023735e-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
|
552 |
2024-07-08T17:06:17,codecarbon,7899baa8-d3bd-43eb-8c24-f17c325095a9,0.2389819622039795,1.516717345886923e-06,6.346576670051573e-06,42.5,233.407177104113,5.86829710006714,2.786505884594388e-06,1.4837511870008369e-05,2.451530165764856e-07,1.7869170771179242e-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
|
553 |
2024-07-08T17:06:17,codecarbon,7899baa8-d3bd-43eb-8c24-f17c325095a9,0.3640382289886474,2.312463659716036e-06,6.352254998439052e-06,42.5,233.7860779211272,5.86829710006714,4.235092302163442e-06,2.261140697801256e-05,3.97738513813503e-07,2.7244237793989508e-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
|
@@ -742,7 +742,7 @@ timestamp,project_name,run_id,duration,emissions,emissions_rate,cpu_power,gpu_po
|
|
742 |
2024-07-12T16:49:21,codecarbon,ab318c0e-9a84-449b-bb2e-26bb0f504d2d,699.5889921188354,0.0008502376531644,1.215338809990921e-06,42.5,3.896598811366301,5.86829710006714,0.008257905904452,0.0006199935515499,0.0011391560366929,0.0100170554926949,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
|
743 |
2024-07-12T16:49:21,codecarbon,ab318c0e-9a84-449b-bb2e-26bb0f504d2d,699.703019618988,0.0008507016184123,1.2158038404287457e-06,42.5,131.470054635134,5.86829710006714,0.0082592221566372,0.000623994110306,0.0011393054217236,0.0100225216886668,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
|
744 |
2024-07-12T16:49:21,codecarbon,ab318c0e-9a84-449b-bb2e-26bb0f504d2d,699.8152840137482,0.0008512236820887,1.2163548032370144e-06,42.5,158.61214418636493,5.86829710006714,0.008260511162877,0.000628714114082,0.0011394470929886,0.0100286723699477,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
|
745 |
-
2024-07-12T17:49:39,codecarbon,93167b58-3d72-4fa1-ae9c-ed0dcd7e37b3,0.0350682735443115,3.610695204419831e-08,1.029618752077268e-06,42.5,0.0,5.86829710006714,4.032709532313878e-07,0.0,2.
|
746 |
2024-07-12T17:49:39,codecarbon,93167b58-3d72-4fa1-ae9c-ed0dcd7e37b3,0.1399636268615722,7.048978883472627e-07,5.036293386741295e-06,42.5,232.01468278074324,5.86829710006714,1.617773042784797e-06,6.53306078199356e-06,1.539045480495816e-07,8.30473837282794e-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
|
747 |
2024-07-12T17:49:39,codecarbon,93167b58-3d72-4fa1-ae9c-ed0dcd7e37b3,0.2350647449493408,1.254653345002821e-06,5.337479872931236e-06,42.5,203.19962249394143,5.86829710006714,2.7280537618531126e-06,1.1781398313995273e-05,2.722176540355766e-07,1.4781669729883962e-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
|
748 |
2024-07-12T17:49:39,codecarbon,93167b58-3d72-4fa1-ae9c-ed0dcd7e37b3,0.3211250305175781,1.909616570369529e-06,5.9466450413151405e-06,42.5,286.56429022482627,5.86829710006714,3.732204768392775e-06,1.838751470999849e-05,3.783845328427068e-07,2.249810401123398e-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
|
@@ -918,7 +918,7 @@ timestamp,project_name,run_id,duration,emissions,emissions_rate,cpu_power,gpu_po
|
|
918 |
2024-07-15T11:37:32,codecarbon,781a5585-c0ab-419a-ab46-32e025392a51,959.4583156108856,0.0011641370725303,1.2133274094239223e-06,42.5,140.48103176563686,5.86829710006714,0.0113266408003038,0.000825535938206,0.0015630775944864,0.0137152543329963,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
|
919 |
2024-07-15T11:37:32,codecarbon,781a5585-c0ab-419a-ab46-32e025392a51,959.5223245620728,0.0011642068765856,1.2133192180983877e-06,42.5,0.0,5.86829710006714,0.01132738133553,0.000825535938206,0.0015631594541425,0.0137160767278785,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
|
920 |
2024-07-15T11:37:32,codecarbon,781a5585-c0ab-419a-ab46-32e025392a51,959.585569381714,0.0011647763284926,1.213832685336334e-06,42.5,359.67605791103244,5.86829710006714,0.0113280927530593,0.000831453998496,0.0015632389609601,0.0137227857125154,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
|
921 |
-
2024-07-15T11:38:42,codecarbon,706ce1fc-32cc-4a1e-bf24-46c5deb9b320,0.0221931934356689,2.
|
922 |
2024-07-15T11:38:42,codecarbon,706ce1fc-32cc-4a1e-bf24-46c5deb9b320,0.0807166099548339,5.514091563830758e-07,6.831421149768603e-06,42.5,348.3593431226412,5.86829710006714,9.413192669550578e-07,5.469171041999274e-06,8.592407367359556e-08,6.496414382627927e-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
|
923 |
2024-07-15T11:38:42,codecarbon,706ce1fc-32cc-4a1e-bf24-46c5deb9b320,0.1412580013275146,6.178752133312098e-07,4.374090016314412e-06,42.5,0.0,5.86829710006714,1.644512348704868e-06,5.469171041999274e-06,1.657993238802647e-07,7.279482714584405e-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
|
924 |
2024-07-15T11:38:42,codecarbon,706ce1fc-32cc-4a1e-bf24-46c5deb9b320,0.197256326675415,1.3223391469870116e-06,6.703658986628695e-06,42.5,505.2443036525296,5.86829710006714,2.293798989719815e-06,1.304778821599982e-05,2.375212544060901e-07,1.5579108460125725e-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
|
@@ -1110,4 +1110,155 @@ timestamp,project_name,run_id,duration,emissions,emissions_rate,cpu_power,gpu_po
|
|
1110 |
2024-07-15T15:14:25,codecarbon,5754e8cc-fe10-4071-ad28-36beb5845d08,131.54842019081116,0.0001782723551991,1.3551843111500376e-06,42.5,88.47381291243063,5.86829710006714,0.0015519787035054,0.000336094435542,0.0002122385422772,0.0021003116813247,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
|
1111 |
2024-07-15T15:15:25,codecarbon,5754e8cc-fe10-4071-ad28-36beb5845d08,191.4480893611908,0.0002508706860095,1.3103849030125875e-06,42.5,3.0389178603444584,5.86829710006714,0.002259115937021,0.0003866566982139,0.0003098546225025,0.0029556272577375,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
|
1112 |
2024-07-15T15:15:26,codecarbon,5754e8cc-fe10-4071-ad28-36beb5845d08,192.49919319152832,0.0002527540680607,1.3130136488898957e-06,42.5,27.917131283778648,5.86829710006714,0.0022714895029862,0.0003947767047099,0.0003115500726648,0.002977816280361,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
|
1113 |
-
2024-07-15T15:15:26,codecarbon,5754e8cc-fe10-4071-ad28-36beb5845d08,192.9470191001892,0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
2024-07-02T16:09:03,codecarbon,a358c92d-663a-4ee4-9e0e-20ed6d767cc3,0.0515203475952148,5.88617055498662e-07,1.142494340533782e-05,42.5,511.12392316749856,5.86829710006714,5.845859646797181e-07,6.320005056001388e-06,3.018737560845845e-08,6.934778396289564e-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
|
21 |
2024-07-02T16:09:07,codecarbon,1dba5bfa-c84b-4d06-913a-bde55260b5ee,0.0635650157928466,6.928946357223358e-07,1.0900565776313565e-05,42.5,438.0436708713923,5.86829710006714,7.386662893825108e-07,7.370839229997594e-06,5.381680678226532e-08,8.16332232616237e-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
|
22 |
2024-07-02T16:09:11,codecarbon,236cd340-1fe3-40d7-a676-0193147ec3ac,0.0700438022613525,4.85891445439375e-07,6.936965580857268e-06,42.5,272.310994144723,5.86829710006714,8.151069283485413e-07,4.845837209999093e-06,6.357482911634331e-08,5.724518967463977e-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
|
23 |
+
2024-07-02T16:40:47,codecarbon,34199290-f890-4f29-80b7-698da3fcd3cf,0.0210487842559814,2.1380476679491322e-08,1.0157582699065205e-06,42.5,0.0,5.86829710006714,2.484925919108921e-07,0.0,3.401005792795786e-09,2.5189359770368785e-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
|
24 |
2024-07-02T16:40:47,codecarbon,34199290-f890-4f29-80b7-698da3fcd3cf,0.0481131076812744,5.010462680666598e-08,1.041392444208435e-06,42.5,0.0,5.86829710006714,5.68001965681712e-07,0.0,2.2304550731841283e-08,5.903065164135532e-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
|
25 |
2024-07-02T16:43:18,codecarbon,23da81a5-a00e-4713-a76a-153ee49be617,0.0378229618072509,3.825573869578848e-08,1.0114421734274268e-06,42.5,0.0,5.86829710006714,4.346966743469239e-07,0.0,1.6012437397895006e-08,4.5070911174481883e-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
|
26 |
2024-07-02T16:43:24,codecarbon,23da81a5-a00e-4713-a76a-153ee49be617,5.281776666641235,6.936743131070106e-06,1.3133351841400916e-06,42.5,7.475454992061839,5.86829710006714,6.233068721161949e-05,1.088084203799966e-05,8.513551525014216e-06,8.172508077463337e-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
|
|
|
177 |
2024-07-03T15:44:07,codecarbon,a8d63045-78f7-4a6e-aca1-951c939030d6,0.0322246551513671,3.318625797677172e-08,1.029840593200692e-06,42.5,0.0,5.86829710006714,3.804299566480849e-07,0.0,1.0553183784433411e-08,3.909831404325183e-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
|
178 |
2024-07-03T15:44:07,codecarbon,a8d63045-78f7-4a6e-aca1-951c939030d6,0.0904645919799804,5.923303000640177e-07,6.547647948217116e-06,42.5,382.04120211704776,5.86829710006714,1.0561800665325589e-06,5.862504689993497e-06,5.984114580570577e-08,6.978525902331762e-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
|
179 |
2024-07-03T15:45:28,codecarbon,f3810609-3149-4f43-a2db-4b12c9412db6,0.0234465599060058,2.3245217399153613e-08,9.914127058442945e-07,42.5,0.0,5.86829710006714,2.649949656592475e-07,0.0,8.868032245459291e-09,2.738629979047068e-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
|
180 |
+
2024-07-03T15:45:28,codecarbon,f3810609-3149-4f43-a2db-4b12c9412db6,0.0559644699096679,7.45195240415923e-07,1.3315506099115025e-05,42.5,989.0123602356176,5.86829710006714,6.370935175153945e-07,8.116395381993491e-06,2.6011806389192322e-08,8.779500705898078e-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
|
181 |
2024-07-03T15:47:09,codecarbon,09708e23-bae6-45bc-b2d3-0751d165bfc0,0.042006492614746,4.2632362549308526e-08,1.0148993618749005e-06,42.5,0.0,5.86829710006714,4.84333270125919e-07,0.0,1.7938935594088437e-08,5.022722057200075e-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
|
182 |
2024-07-03T15:47:09,codecarbon,09708e23-bae6-45bc-b2d3-0751d165bfc0,0.1058070659637451,7.131657477154608e-07,6.740246893906194e-06,42.5,428.3836836353148,5.86829710006714,1.2154618899027508e-06,7.116116803984607e-06,7.056727526238168e-08,8.40214596914974e-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
|
183 |
2024-07-03T15:47:09,codecarbon,09708e23-bae6-45bc-b2d3-0751d165bfc0,0.1724567413330078,1.1470019719315802e-06,6.650954686176984e-06,42.5,241.82881406898045,5.86829710006714,1.990516152646806e-06,1.1391953557995936e-05,1.3090782598681016e-07,1.3513377536629555e-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
|
|
|
412 |
2024-07-03T17:47:00,codecarbon,dde5f579-1a17-44e4-8538-835f21e16377,595.662139415741,0.0007881706346789,1.3231840376023824e-06,42.5,393.49265773578855,5.86829710006714,0.007031497131288,0.00128579825086,0.0009685189497714,0.0092858143319194,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
|
413 |
2024-07-03T17:47:00,codecarbon,dde5f579-1a17-44e4-8538-835f21e16377,595.7421896457672,0.0007885355690941,1.3236188116256563e-06,42.5,153.59797407461227,5.86829710006714,0.007032430262698,0.001289084920156,0.0009685986155436,0.0092901137983976,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
|
414 |
2024-07-03T17:47:00,codecarbon,dde5f579-1a17-44e4-8538-835f21e16377,595.8289866447449,0.000788698633409,1.3236996706898205e-06,42.5,34.359851885519866,5.86829710006714,0.0070334550592634,0.001289894365248,0.0009686855123881,0.0092920349368995,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
|
415 |
+
2024-07-04T12:20:49,codecarbon,2500e51a-13c2-44e7-bb45-70076c372a93,0.07027268409729,6.869397130761747e-07,9.775344743131356e-06,42.5,388.9209930064765,5.86829710006714,8.29608076148563e-07,7.216116883999868e-06,4.7439580859058133e-08,8.09316454100749e-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.5806,44.8412,15.648792266845703,machine,N,1.0
|
416 |
2024-07-04T12:20:49,codecarbon,2500e51a-13c2-44e7-bb45-70076c372a93,0.1789605617523193,1.1358992778473794e-06,6.347204471896212e-06,42.5,132.40355548614227,5.86829710006714,2.0970736940701804e-06,1.1091119984000131e-05,1.943777217739277e-07,1.338257139984424e-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.5806,44.8412,15.648792266845703,machine,N,1.0
|
417 |
2024-07-04T12:20:49,codecarbon,24dfd19b-af23-44a3-8d45-30c0ed9c1d88,0.2649962902069092,1.570229985394217e-06,5.925479123380109e-06,42.5,155.21402314170305,5.86829710006714,2.8097071581416666e-06,1.53919567580001e-05,2.979647952499439e-07,1.8499628711391708e-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.5806,44.8412,15.648792266845703,machine,N,1.0
|
418 |
.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
|
526 |
2024-07-08T17:00:59,codecarbon,45220eec-4fac-45d3-b34c-158c4e104d75,0.1349787712097168,6.001336119891418e-07,4.446133318673593e-06,42.5,0.0,5.86829710006714,1.5816918677753874e-06,5.365837626031267e-06,1.2293094975584988e-07,7.070460443562504e-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
|
527 |
2024-07-08T17:01:00,codecarbon,45220eec-4fac-45d3-b34c-158c4e104d75,0.2441818714141845,1.4480822513269008e-06,5.930342997783992e-06,42.5,291.06972883137706,5.86829710006714,2.858955330318875e-06,1.3954455608033989e-05,2.471370337827731e-07,1.7060547972135637e-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
|
528 |
2024-07-08T17:01:00,codecarbon,45220eec-4fac-45d3-b34c-158c4e104d75,0.3711433410644531,1.6418596757075262e-06,4.423788585290553e-06,42.5,20.097130258863576,5.86829710006714,4.326515396436056e-06,1.4631678372040158e-05,3.853385034346957e-07,1.9343532271910908e-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
|
529 |
+
2024-07-08T17:02:35,codecarbon,b8f8cbdc-9f31-4da3-acd3-80602a08c0fd,0.0423014163970947,4.304695824810602e-08,1.0176245127116476e-06,42.5,0.0,5.86829710006714,4.877164959907532e-07,0.0,1.9440259485937383e-08,5.071567554766906e-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
|
530 |
2024-07-08T17:02:52,codecarbon,c5364909-a83b-4666-bbce-b464284071b0,0.0286540985107421,2.900235734770373e-08,1.0121538926388137e-06,42.5,0.0,5.86829710006714,3.264756666289436e-07,0.0,1.5214944095779024e-08,3.416906107247227e-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
|
531 |
2024-07-08T17:02:52,codecarbon,c5364909-a83b-4666-bbce-b464284071b0,0.0828087329864502,3.18523463876335e-07,3.8464960444263074e-06,42.5,192.0853855846001,5.86829710006714,9.539711806509232e-07,2.7294466280192164e-06,6.92591064247002e-08,3.75267691509484e-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
|
532 |
2024-07-08T17:02:52,codecarbon,c5364909-a83b-4666-bbce-b464284071b0,0.1378135681152343,3.777571658485779e-07,2.741073836305522e-06,42.5,0.0,5.86829710006714,1.5915206736988497e-06,2.7294466280192164e-06,1.2957012036016145e-07,4.450537422078227e-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
|
533 |
2024-07-08T17:02:52,codecarbon,c5364909-a83b-4666-bbce-b464284071b0,0.1923952102661132,9.793295487046924e-07,5.090197138224612e-06,42.5,437.21840499553525,5.86829710006714,2.235887282424503e-06,9.116118404012274e-06,1.859430253139749e-07,1.1537948711750754e-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
|
534 |
+
2024-07-08T17:03:11,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,0.0459609031677246,4.6776760542461504e-08,1.017751117112725e-06,42.5,0.0,5.86829710006714,5.307892958323162e-07,0.0,2.031004019263113e-08,5.510993360249473e-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
|
535 |
2024-07-08T17:03:11,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,0.1564986705780029,5.006202565999529e-07,3.198878653415979e-06,42.5,134.30780976311385,5.86829710006714,1.812232534090678e-06,3.937503150003296e-06,1.4831043567596686e-07,5.898046119769941e-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
|
536 |
2024-07-08T17:03:12,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,0.2708563804626465,1.051488105061046e-06,3.882087264346559e-06,42.5,167.52374212394705,5.86829710006714,3.12683814101749e-06,8.985007187989336e-06,2.7623776647080456e-07,1.2388083095477633e-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
|
537 |
2024-07-08T17:03:12,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,0.3939921855926513,1.6872880290704734e-06,4.282541864459619e-06,42.5,177.03545758747748,5.86829710006714,4.568514559004042e-06,1.4884178574009477e-05,4.26052246532341e-07,1.987874537954586e-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
|
|
|
547 |
2024-07-08T17:06:08,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,176.52826166152954,0.000216135507687,1.224367733827376e-06,42.5,214.06924850912523,5.86829710006714,0.0020838292429844,0.0001755281959779,0.0002870381086643,0.0025463955476267,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
|
548 |
2024-07-08T17:06:08,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,176.63074350357056,0.0002163352356835,1.2247881166802047e-06,42.5,39.42943404398464,5.86829710006714,0.0020850274509853,0.000176574030148,0.0002871471573232,0.0025487486384566,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
|
549 |
2024-07-08T17:06:08,codecarbon,285e0435-b1eb-4be2-8b0e-07f3a8175d71,176.73398518562317,0.0002164677404123,1.224822380285137e-06,42.5,9.956332964041668,5.86829710006714,0.0020862047882543,0.0001768443081419,0.0002872606434961,0.0025503097398924,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
|
550 |
+
2024-07-08T17:06:16,codecarbon,7899baa8-d3bd-43eb-8c24-f17c325095a9,0.0378346443176269,3.852238079166996e-08,1.0181774267063108e-06,42.5,0.0,5.86829710006714,4.348374075359769e-07,0.0,1.9013141971792412e-08,4.538505495077693e-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
|
551 |
2024-07-08T17:06:17,codecarbon,7899baa8-d3bd-43eb-8c24-f17c325095a9,0.1249358654022216,7.929666964401108e-07,6.3469900647601375e-06,42.5,328.48762186136906,5.86829710006714,1.4631157120068869e-06,7.764728434028756e-06,1.1447487798809185e-07,9.342319024023735e-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
|
552 |
2024-07-08T17:06:17,codecarbon,7899baa8-d3bd-43eb-8c24-f17c325095a9,0.2389819622039795,1.516717345886923e-06,6.346576670051573e-06,42.5,233.407177104113,5.86829710006714,2.786505884594388e-06,1.4837511870008369e-05,2.451530165764856e-07,1.7869170771179242e-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
|
553 |
2024-07-08T17:06:17,codecarbon,7899baa8-d3bd-43eb-8c24-f17c325095a9,0.3640382289886474,2.312463659716036e-06,6.352254998439052e-06,42.5,233.7860779211272,5.86829710006714,4.235092302163442e-06,2.261140697801256e-05,3.97738513813503e-07,2.7244237793989508e-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
|
|
|
742 |
2024-07-12T16:49:21,codecarbon,ab318c0e-9a84-449b-bb2e-26bb0f504d2d,699.5889921188354,0.0008502376531644,1.215338809990921e-06,42.5,3.896598811366301,5.86829710006714,0.008257905904452,0.0006199935515499,0.0011391560366929,0.0100170554926949,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
|
743 |
2024-07-12T16:49:21,codecarbon,ab318c0e-9a84-449b-bb2e-26bb0f504d2d,699.703019618988,0.0008507016184123,1.2158038404287457e-06,42.5,131.470054635134,5.86829710006714,0.0082592221566372,0.000623994110306,0.0011393054217236,0.0100225216886668,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
|
744 |
2024-07-12T16:49:21,codecarbon,ab318c0e-9a84-449b-bb2e-26bb0f504d2d,699.8152840137482,0.0008512236820887,1.2163548032370144e-06,42.5,158.61214418636493,5.86829710006714,0.008260511162877,0.000628714114082,0.0011394470929886,0.0100286723699477,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
|
745 |
+
2024-07-12T17:49:39,codecarbon,93167b58-3d72-4fa1-ae9c-ed0dcd7e37b3,0.0350682735443115,3.610695204419831e-08,1.029618752077268e-06,42.5,0.0,5.86829710006714,4.032709532313878e-07,0.0,2.2122277652556482e-08,4.2539323088394425e-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
|
746 |
2024-07-12T17:49:39,codecarbon,93167b58-3d72-4fa1-ae9c-ed0dcd7e37b3,0.1399636268615722,7.048978883472627e-07,5.036293386741295e-06,42.5,232.01468278074324,5.86829710006714,1.617773042784797e-06,6.53306078199356e-06,1.539045480495816e-07,8.30473837282794e-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
|
747 |
2024-07-12T17:49:39,codecarbon,93167b58-3d72-4fa1-ae9c-ed0dcd7e37b3,0.2350647449493408,1.254653345002821e-06,5.337479872931236e-06,42.5,203.19962249394143,5.86829710006714,2.7280537618531126e-06,1.1781398313995273e-05,2.722176540355766e-07,1.4781669729883962e-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
|
748 |
2024-07-12T17:49:39,codecarbon,93167b58-3d72-4fa1-ae9c-ed0dcd7e37b3,0.3211250305175781,1.909616570369529e-06,5.9466450413151405e-06,42.5,286.56429022482627,5.86829710006714,3.732204768392775e-06,1.838751470999849e-05,3.783845328427068e-07,2.249810401123398e-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
|
|
|
918 |
2024-07-15T11:37:32,codecarbon,781a5585-c0ab-419a-ab46-32e025392a51,959.4583156108856,0.0011641370725303,1.2133274094239223e-06,42.5,140.48103176563686,5.86829710006714,0.0113266408003038,0.000825535938206,0.0015630775944864,0.0137152543329963,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
|
919 |
2024-07-15T11:37:32,codecarbon,781a5585-c0ab-419a-ab46-32e025392a51,959.5223245620728,0.0011642068765856,1.2133192180983877e-06,42.5,0.0,5.86829710006714,0.01132738133553,0.000825535938206,0.0015631594541425,0.0137160767278785,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
|
920 |
2024-07-15T11:37:32,codecarbon,781a5585-c0ab-419a-ab46-32e025392a51,959.585569381714,0.0011647763284926,1.213832685336334e-06,42.5,359.67605791103244,5.86829710006714,0.0113280927530593,0.000831453998496,0.0015632389609601,0.0137227857125154,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
|
921 |
+
2024-07-15T11:38:42,codecarbon,706ce1fc-32cc-4a1e-bf24-46c5deb9b320,0.0221931934356689,2.2388501276884932e-08,1.0088003487097126e-06,42.5,0.0,5.86829710006714,2.504178219371372e-07,0.0,1.3351794539081162e-08,2.637696164762183e-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
|
922 |
2024-07-15T11:38:42,codecarbon,706ce1fc-32cc-4a1e-bf24-46c5deb9b320,0.0807166099548339,5.514091563830758e-07,6.831421149768603e-06,42.5,348.3593431226412,5.86829710006714,9.413192669550578e-07,5.469171041999274e-06,8.592407367359556e-08,6.496414382627927e-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
|
923 |
2024-07-15T11:38:42,codecarbon,706ce1fc-32cc-4a1e-bf24-46c5deb9b320,0.1412580013275146,6.178752133312098e-07,4.374090016314412e-06,42.5,0.0,5.86829710006714,1.644512348704868e-06,5.469171041999274e-06,1.657993238802647e-07,7.279482714584405e-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
|
924 |
2024-07-15T11:38:42,codecarbon,706ce1fc-32cc-4a1e-bf24-46c5deb9b320,0.197256326675415,1.3223391469870116e-06,6.703658986628695e-06,42.5,505.2443036525296,5.86829710006714,2.293798989719815e-06,1.304778821599982e-05,2.375212544060901e-07,1.5579108460125725e-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
|
|
|
1110 |
2024-07-15T15:14:25,codecarbon,5754e8cc-fe10-4071-ad28-36beb5845d08,131.54842019081116,0.0001782723551991,1.3551843111500376e-06,42.5,88.47381291243063,5.86829710006714,0.0015519787035054,0.000336094435542,0.0002122385422772,0.0021003116813247,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
|
1111 |
2024-07-15T15:15:25,codecarbon,5754e8cc-fe10-4071-ad28-36beb5845d08,191.4480893611908,0.0002508706860095,1.3103849030125875e-06,42.5,3.0389178603444584,5.86829710006714,0.002259115937021,0.0003866566982139,0.0003098546225025,0.0029556272577375,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
|
1112 |
2024-07-15T15:15:26,codecarbon,5754e8cc-fe10-4071-ad28-36beb5845d08,192.49919319152832,0.0002527540680607,1.3130136488898957e-06,42.5,27.917131283778648,5.86829710006714,0.0022714895029862,0.0003947767047099,0.0003115500726648,0.002977816280361,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
|
1113 |
+
2024-07-15T15:15:26,codecarbon,5754e8cc-fe10-4071-ad28-36beb5845d08,192.9470191001892,0.000253568388987,1.3141866102392218e-06,42.5,29.62003464374564,5.86829710006714,0.0022767409788237,0.0003984119853959,0.0003122572195364,0.0029874101837561,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
|
1114 |
+
2024-07-16T11:45:40,codecarbon,9e14b2d3-b2bd-498a-9d91-351f4512f1c6,0.5836658477783203,1.2359058008218091e-06,2.117488637593223e-06,42.5,52.7421034240114,5.86829710006714,6.874954203764597e-06,7.134450151999663e-06,5.513916105149027e-07,1.4560795966279165e-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
|
1115 |
+
2024-07-16T11:56:55,codecarbon,9e14b2d3-b2bd-498a-9d91-351f4512f1c6,675.2248153686523,0.0007771281416119,1.150917626135577e-06,42.5,0.4170642500679776,5.86829710006714,0.0079713775843381,8.521256817000007e-05,0.0010991272995343,0.0091557174520425,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
|
1116 |
+
2024-07-16T11:56:55,codecarbon,9e14b2d3-b2bd-498a-9d91-351f4512f1c6,675.7161824703217,0.0007778706509565,1.1511795501371097e-06,42.5,16.09573600050363,5.86829710006714,0.0079771665680739,8.739395880400002e-05,0.0010999047820506,0.0091644653089285,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
|
1117 |
+
2024-07-16T11:57:17,codecarbon,9e14b2d3-b2bd-498a-9d91-351f4512f1c6,697.3194360733032,0.000803434007882,1.1521749808183669e-06,42.5,2.071127348531453,5.86829710006714,0.0082322049786647,9.943369065799987e-05,0.0011340007453974,0.0094656394147201,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
|
1118 |
+
2024-07-16T12:54:19,codecarbon,b8a94b45-15b4-46ad-8cf1-e8e35f0c6b9a,0.0380029678344726,3.9069160522212986e-08,1.028055511148084e-06,42.5,0.0,5.86829710006714,4.368161161740621e-07,0.0,2.3476306241529228e-08,4.602924224155913e-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
|
1119 |
+
2024-07-16T12:54:21,codecarbon,b8a94b45-15b4-46ad-8cf1-e8e35f0c6b9a,2.0763094425201416,2.803645848871341e-06,1.3503025086031434e-06,42.5,11.215793948336977,5.86829710006714,2.4446928335560696e-05,5.660560083999792e-06,2.9236011181501458e-06,3.303108953771064e-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
|
1120 |
+
2024-07-16T12:54:34,codecarbon,b8a94b45-15b4-46ad-8cf1-e8e35f0c6b9a,14.851591110229492,1.840924473472419e-05,1.2395469682736048e-06,42.5,3.976940333470384,5.86829710006714,0.0001752543310324,1.902279299600008e-05,2.261097237614289e-05,0.0002168880964045,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
|
1121 |
+
2024-07-16T13:03:31,codecarbon,b8a94b45-15b4-46ad-8cf1-e8e35f0c6b9a,552.6258857250214,0.0006358923534724,1.1506742081727747e-06,42.5,0.3399734550156486,5.86829710006714,0.0065239668743477,6.974144468199989e-05,0.0008980429206457,0.0074917512396755,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
|
1122 |
+
2024-07-16T13:18:34,codecarbon,85dede1f-f69a-4263-ac5a-73ef5c435fbc,0.0485813617706298,7.42128822010691e-07,1.5275998756777313e-05,42.5,950.1008398282336,5.86829710006714,5.61640825536516e-07,8.155284302000052e-06,2.644863995233967e-08,8.743373767488908e-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
|
1123 |
+
2024-07-16T13:18:36,codecarbon,85dede1f-f69a-4263-ac5a-73ef5c435fbc,1.8527805805206297,3.153919324799133e-06,1.7022627276851556e-06,42.5,8.431326621034163,5.86829710006714,2.185002383258608e-05,1.2373065453999844e-05,2.934739208084523e-06,3.715782849467045e-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
|
1124 |
+
2024-07-16T13:19:17,codecarbon,85dede1f-f69a-4263-ac5a-73ef5c435fbc,43.614588022232056,5.1669033302494086e-05,1.1846731941192788e-06,42.5,1.0182979144360622,5.86829710006714,0.0005148594978782,2.399363030600004e-05,6.988440763133431e-05,0.0006087375358156,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
|
1125 |
+
2024-07-16T13:30:43,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,0.0354533195495605,3.642252802415128e-08,1.0273375945300657e-06,42.5,0.0,5.86829710006714,4.067386190096538e-07,0.0,2.2372563074857987e-08,4.291111820845118e-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
|
1126 |
+
2024-07-16T13:30:45,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,2.265507459640503,3.2083555673007093e-06,1.416175238641598e-06,42.5,12.76553336464412,5.86829710006714,2.6733766661749943e-05,7.896395205999728e-06,3.169005974716773e-06,3.779916784246644e-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
|
1127 |
+
2024-07-16T13:31:04,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,21.423816680908203,2.673352094315466e-05,1.2478411919468202e-06,42.5,3.890864101662137,5.86829710006714,0.000252896445824,2.8241133703999725e-05,3.382278691306624e-05,0.0003149603664411,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
|
1128 |
+
2024-07-16T13:57:01,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1578.0859813690186,0.0018041844438855,1.143273855281588e-06,42.5,0.0634422849087254,5.86829710006714,0.0186301282233662,5.566198897399973e-05,0.0025701676086235,0.0212559578209637,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
|
1129 |
+
2024-07-16T13:57:40,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1617.006000995636,0.0018496484326371,1.143872336588872e-06,42.5,1.304488972986099,5.86829710006714,0.0190895888697769,6.951977783799983e-05,0.0026324821185003,0.0217915907661153,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
|
1130 |
+
2024-07-16T13:57:40,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1617.5465660095217,0.0018504328255359,1.1439749954778284e-06,42.5,13.689335605550353,5.86829710006714,0.0190959599344266,7.156811280999978e-05,0.0026333040259017,0.0218008320731384,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
|
1131 |
+
2024-07-16T13:57:45,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1622.736119747162,0.0018569139337231,1.1443104711396132e-06,42.5,4.661520723437196,5.86829710006714,0.0191571871552202,7.827978484599993e-05,0.0026417221611618,0.0218771891012281,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
|
1132 |
+
2024-07-16T13:57:50,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1627.391098737717,0.0018630618711577,1.1448150801628604e-06,42.5,7.74945407759807,5.86829710006714,0.0192120899418989,8.827201506199974e-05,0.0026492589287439,0.0219496208857048,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
|
1133 |
+
2024-07-16T13:57:53,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1630.3108971118927,0.0018665652903761,1.1449137055286672e-06,42.5,3.582079697486073,5.86829710006714,0.0192465760610169,9.085673935200005e-05,0.0026534635388449,0.0219908963392139,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
|
1134 |
+
2024-07-16T13:58:02,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1639.8319189548492,0.0018783724919854,1.1454664775537397e-06,42.5,4.269023250853483,5.86829710006714,0.0193589198897282,0.0001021384150439,0.0026689443105437,0.0221300026153159,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
|
1135 |
+
2024-07-16T13:58:05,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1641.9668793678284,0.001881658782026,1.1459785247011069e-06,42.5,3.4606523651361525,5.86829710006714,0.0193841007444593,0.0001095592543139,0.0026750599676025,0.0221687199663759,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
|
1136 |
+
2024-07-16T13:58:10,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1647.4026277065277,0.0018884769918891,1.1463360323263976e-06,42.5,4.9353654135137495,5.86829710006714,0.0194481755183802,0.0001169959269299,0.0026838771048515,0.0222490485501617,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
|
1137 |
+
2024-07-16T13:58:11,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1648.6820499897003,0.0018904910656765,1.1466680708316809e-06,42.5,18.61090851775561,5.86829710006714,0.0194632658681935,0.0001235937099859,0.0026859177363094,0.0222727773144889,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
|
1138 |
+
2024-07-16T13:58:12,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1649.8196725845337,0.0018922747366754,1.146958524085929e-06,42.5,18.40389039575492,5.86829710006714,0.0194766664543085,0.0001293848257299,0.0026877403135886,0.0222937915936272,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
|
1139 |
+
2024-07-16T13:58:13,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1650.861388683319,0.001894177048265,1.1473870921263955e-06,42.5,29.490352265738736,5.86829710006714,0.0194889251679182,0.000137882888084,0.0026893955781722,0.0223162036341744,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
|
1140 |
+
2024-07-16T13:58:15,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1652.3521931171415,0.0018962373465552,1.1475987712873584e-06,42.5,10.459468083069073,5.86829710006714,0.0195065013246403,0.0001421940026439,0.0026917816641411,0.0223404769914254,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
|
1141 |
+
2024-07-16T13:58:17,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1654.303823471069,0.0018987667542488,1.1477739018125809e-06,42.5,9.391031825498027,5.86829710006714,0.0195295414052075,0.0001463728948759,0.0026943628503171,0.0223702771504006,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
|
1142 |
+
2024-07-16T13:58:19,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1656.4894382953644,0.0019016241389063,1.1479844633740893e-06,42.5,7.229675127675791,5.86829710006714,0.0195553202634056,0.0001507420650379,0.0026978790340411,0.0224039413624848,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
|
1143 |
+
2024-07-16T13:58:19,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1656.618186712265,0.001901952523328,1.1480934705314891e-06,42.5,63.38793524399655,5.86829710006714,0.0195568162431319,0.0001529381779059,0.0026980557950115,0.0224078102160495,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
|
1144 |
+
2024-07-16T13:58:30,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,1667.1963200569153,0.0019167028846153,1.14965637912992e-06,42.5,0.6237458027270074,5.86829710006714,0.0196816674328512,0.0001683243013259,0.0027315995265039,0.0225815912606812,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
|
1145 |
+
2024-07-16T14:34:03,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,3800.377483844757,0.0043548351683448,1.1458954240354e-06,42.5,0.1102884297460011,5.86829710006714,0.0448650387210978,0.0002336543535899,0.0062076980037281,0.051306391078416,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
|
1146 |
+
2024-07-16T14:34:11,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,3808.763381958008,0.0043651606048443,1.1460834310479777e-06,42.5,3.920204203665529,5.86829710006714,0.044963966117137,0.0002427749164419,0.0062212989391389,0.051428039972718,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
|
1147 |
+
2024-07-16T14:34:15,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,3812.243934631348,0.0043695597890073,1.1461910265796983e-06,42.5,6.490835738236304,5.86829710006714,0.045005094417764,0.0002484110320619,0.006226363410638,0.0514798688604641,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
|
1148 |
+
2024-07-16T14:34:59,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,3856.534071207048,0.0044211274941786,1.1463991793011503e-06,42.5,1.1282991605861177,5.86829710006714,0.0455279522978597,0.0002620724318799,0.006297387871477,0.0520874126012168,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
|
1149 |
+
2024-07-16T14:35:02,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,3859.4130165576935,0.0044248087480853,1.1464978557884211e-06,42.5,5.9458638276695694,5.86829710006714,0.0455619229873021,0.0002668216023459,0.0063020386203957,0.0521307832100439,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
|
1150 |
+
2024-07-16T14:35:34,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,3890.9634158611298,0.0044616728234428,1.146675603593524e-06,42.5,1.354690125314249,5.86829710006714,0.0459343818498982,0.0002784274449639,0.0063522871770905,0.0525650964719527,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
|
1151 |
+
2024-07-16T14:35:34,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,3891.4218261241913,0.0044623667059886,1.146718835781702e-06,42.5,16.213874527393244,5.86829710006714,0.0459397812166147,0.0002804827243859,0.0063530074923176,0.0525732714333184,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
|
1152 |
+
2024-07-16T14:36:45,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,3962.152794599533,0.004543986250456,1.1468478087593104e-06,42.5,0.6423929140025211,5.86829710006714,0.0467747874153985,0.000292977456604,0.0064671053603995,0.053534870232402,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
|
1153 |
+
2024-07-16T14:36:45,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,3962.831489801407,0.0045449557416942,1.146896039710743e-06,42.5,12.450842206167517,5.86829710006714,0.0467827997893095,0.0002953144029179,0.0064681780790558,0.0535462922712833,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
|
1154 |
+
2024-07-16T14:59:29,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,5326.127427816391,0.0061034616725743,1.1459473614352964e-06,42.5,0.1184597697930406,5.86829710006714,0.0628772183393438,0.0003401741610279,0.0086904018018036,0.0719077943021755,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
|
1155 |
+
2024-07-16T15:17:33,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,6410.524363994598,0.0074051291329138,1.15515185848221e-06,42.5,2.5429896821269025,5.86829710006714,0.0756791508591837,0.0011061769960519,0.0104580319029358,0.0872433597581715,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
|
1156 |
+
2024-07-16T15:17:34,codecarbon,c3dedab9-2f39-479e-9e61-7700d6e17349,6411.556826591492,0.0074065378923825,1.155185564551886e-06,42.5,9.70427325775498,5.86829710006714,0.07569132764356,0.0011089519982719,0.0104596773838467,0.0872599570256787,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
|
1157 |
+
2024-07-16T15:18:59,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,0.0315833091735839,3.196608184931523e-08,1.012119460745152e-06,42.5,0.0,5.86829710006714,3.603107399410672e-07,0.0,1.6296923312684918e-08,3.766076632537521e-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
|
1158 |
+
2024-07-16T15:19:01,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,1.9052443504333496,2.673710628727989e-06,1.4033426358775718e-06,42.5,11.54824516534184,5.86829710006714,2.246948629617692e-05,6.0008381340005e-06,3.029936278925997e-06,3.1500260709103415e-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
|
1159 |
+
2024-07-16T15:19:08,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,8.697577953338623,1.105147464253737e-05,1.270638182471844e-06,42.5,3.969531005231608,5.86829710006714,0.0001026448941893,1.3486955233999592e-05,1.4070846679823226e-05,0.0001302026961031,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
|
1160 |
+
2024-07-16T15:19:09,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,10.020779371261597,1.2837528939006182e-05,1.2810908676247966e-06,42.5,8.978635895516724,5.86829710006714,0.0001182660220397,1.6782235648000153e-05,1.619679631857963e-05,0.0001512450540063,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
|
1161 |
+
2024-07-16T15:19:13,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,14.211618185043337,1.820083246921621e-05,1.280700918940478e-06,42.5,5.949151352467265,5.86829710006714,0.0001677293640044,2.3704463407999733e-05,2.2998864645897377e-05,0.0002144326920582,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
|
1162 |
+
2024-07-16T15:19:21,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,21.30056524276733,2.6982228211012537e-05,1.2667376618174215e-06,42.5,4.1924124646042085,5.86829710006714,0.0002514074408345,3.1956414454000284e-05,3.452665014872385e-05,0.0003178905054372,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
|
1163 |
+
2024-07-16T15:19:21,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,21.579723358154297,2.756608755062408e-05,1.2774069015211783e-06,42.5,41.66715810364776,5.86829710006714,0.0002546912443306,3.51411392240002e-05,3.493684735785214e-05,0.0003247692309125,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
|
1164 |
+
2024-07-16T15:19:43,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,43.46054530143738,5.387478461447387e-05,1.239625141396743e-06,42.5,2.6355885998786284,5.86829710006714,0.0005129946536488,5.115809648200027e-05,7.057179439109366e-05,0.0006347245445218,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
|
1165 |
+
2024-07-16T15:19:48,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,48.24493741989136,5.961899292366175e-05,1.2357564567817404e-06,42.5,2.583963128911682,5.86829710006714,0.0005694773533278,5.459004367200024e-05,7.833240652829725e-05,0.0007023998035281,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
|
1166 |
+
2024-07-16T15:19:54,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,54.61988306045532,6.78629175575689e-05,1.242458126145303e-06,42.5,6.515692538601314,5.86829710006714,0.0006447130797637,6.612088623000022e-05,8.869144733070063e-05,0.0007995254133244,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
|
1167 |
+
2024-07-16T15:19:55,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,55.95097160339356,6.966833461849324e-05,1.2451675569163431e-06,42.5,9.315825476916167,5.86829710006714,0.0006604140145911,6.955755564600017e-05,9.08243229578279e-05,0.0008207958931949,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
|
1168 |
+
2024-07-16T15:20:00,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,60.54849934577942,7.5878317618369e-05,1.2531824642761878e-06,42.5,8.959181570180982,5.86829710006714,0.0007146785481108,8.099173146000008e-05,9.828838651108412e-05,0.0008939586660819,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
|
1169 |
+
2024-07-16T15:20:02,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,62.98090577125549,7.94931204817046e-05,1.2621781079240255e-06,42.5,14.795912931162103,5.86829710006714,0.0007433771274156,9.097868389399984e-05,0.0001021905721504,0.00093654638346,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
|
1170 |
+
2024-07-16T15:20:10,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,71.07017850875854,8.937414964537804e-05,1.2575478424380733e-06,42.5,3.472367159240473,5.86829710006714,0.0008388519499037,9.877730124399978e-05,0.0001153302517373,0.001052959502885,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
|
1171 |
+
2024-07-16T15:20:11,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,71.27804684638977,8.976564451203529e-05,1.2593729553994072e-06,42.5,32.72672885311204,5.86829710006714,0.000841294740306,0.0001006398027339,0.0001156373476754,0.0010575718907154,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
|
1172 |
+
2024-07-16T15:20:11,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,71.72434711456299,9.050484096830124e-05,1.2618426602579009e-06,42.5,22.894854442289287,5.86829710006714,0.0008465165355139,0.000103440082752,0.0001163240986169,0.0010662807168828,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
|
1173 |
+
2024-07-16T15:20:23,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,84.08795642852783,0.0001058554598803,1.2588658872960763e-06,42.5,4.294227821825298,5.86829710006714,0.0009924990894065,0.000118187872328,0.0001364467212766,0.0012471336830112,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
|
1174 |
+
2024-07-16T15:21:27,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,147.5387465953827,0.0001821944728086,1.2348923724309474e-06,42.5,2.662520998467284,5.86829710006714,0.001741559417049,0.000165113187646,0.000239847415671,0.0021465200203661,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
|
1175 |
+
2024-07-16T15:21:29,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,149.3596477508545,0.0001844535429936,1.234962359454118e-06,42.5,4.379238727983217,5.86829710006714,0.0017630328360531,0.00016732096719,0.0002427814009137,0.0021731352041568,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
|
1176 |
+
2024-07-16T15:21:29,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,149.6829710006714,0.0001850572919556,1.2363282925140495e-06,42.5,31.4462177597671,5.86829710006714,0.0017668382614851,0.000170127636102,0.0002432823611776,0.0021802482587647,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
|
1177 |
+
2024-07-16T15:21:29,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,150.0045771598816,0.0001858818431993,1.2391744753312502e-06,42.5,61.7871452510978,5.86829710006714,0.0017706113267276,0.000175579584908,0.0002437717787752,0.0021899626904108,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
|
1178 |
+
2024-07-16T15:21:32,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,153.02228331565857,0.0001900590418826,1.2420350668179578e-06,42.5,10.416623332542844,5.86829710006714,0.0018062370243999,0.0001843023696639,0.0002486368672327,0.0022391762612966,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
|
1179 |
+
2024-07-16T15:21:34,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,154.3733127117157,0.0001916822824802,1.241680178478869e-06,42.5,2.7144264095906983,5.86829710006714,0.001822175193164,0.000185318759366,0.0002508064807956,0.0022583004333257,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
|
1180 |
+
2024-07-16T15:21:35,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,155.55474758148193,0.0001934382025896,1.243537761445016e-06,42.5,14.98208443536691,5.86829710006714,0.0018360770680838,0.000190210985502,0.000252699712406,0.0022789877659918,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
|
1181 |
+
2024-07-16T15:21:36,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,156.74747323989868,0.0001950636243761,1.2444450959510157e-06,42.5,9.429733784830583,5.86829710006714,0.001850181362364,0.0001933351546679,0.0002546211186152,0.0022981376356472,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
|
1182 |
+
2024-07-16T15:21:37,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,157.75647377967834,0.0001964346031152,1.2451761782504182e-06,42.5,9.441171095807476,5.86829710006714,0.001862081369592,0.0001959734901119,0.0002562349306473,0.0023142897903514,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
|
1183 |
+
2024-07-16T15:21:38,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,158.8485929965973,0.0001979770154757,1.2463252694971877e-06,42.5,11.745375430889972,5.86829710006714,0.0018749506119224,0.000199526826288,0.0002579842481398,0.0023324616863503,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
|
1184 |
+
2024-07-16T15:21:39,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,159.83478236198425,0.0001993665031646,1.2473286491116624e-06,42.5,11.600018572421218,5.86829710006714,0.0018865813177492,0.0002026948843779,0.0002595557016961,0.0023488319038234,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
|
1185 |
+
2024-07-16T15:21:40,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,161.07698130607605,0.0002009629133946,1.2476203102711523e-06,42.5,6.283313723547444,5.86829710006714,0.0019012343588802,0.000204855997218,0.0002615496183904,0.0023676399744887,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
|
1186 |
+
2024-07-16T15:21:40,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,161.22836184501648,0.0002015641986555,1.2501782958590312e-06,42.5,123.3508820990616,5.86829710006714,0.0019030214902427,0.000209940723508,0.000261761789307,0.0023747240030578,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
|
1187 |
+
2024-07-16T15:21:45,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,166.1530282497406,0.0002075341309926,1.2490541591619494e-06,42.5,3.1138531665302924,5.86829710006714,0.0019611362867885,0.000214195171356,0.0002697271663997,0.0024450586245442,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
|
1188 |
+
2024-07-16T15:21:50,codecarbon,b2a83588-0482-46da-93f4-d58154d79385,170.4931833744049,0.0002129475186275,1.2490089891739343e-06,42.5,4.634039893610562,5.86829710006714,0.0020123152169916,0.0002197729535959,0.0002767481567431,0.0025088363273308,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
|
1189 |
+
2024-07-16T15:35:35,codecarbon,d096648b-f303-4d3d-ac5a-9fdc25ba4b6b,0.0356209278106689,3.61461706611431e-08,1.0147453444577836e-06,42.5,0.0,5.86829710006714,4.087060689926148e-07,0.0,1.7149215131174364e-08,4.258552841237891e-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
|
1190 |
+
2024-07-16T15:36:41,codecarbon,d096648b-f303-4d3d-ac5a-9fdc25ba4b6b,65.95591497421265,7.981554915732701e-05,1.2101348179087984e-06,42.5,2.963672173639984,5.86829710006714,0.0007786343996723,5.426671007999987e-05,0.0001074439597857,0.0009403450695381,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
|
1191 |
+
2024-07-16T15:36:42,codecarbon,d096648b-f303-4d3d-ac5a-9fdc25ba4b6b,66.88907623291016,8.121405062955458e-05,1.2141601469687569e-06,42.5,15.410061416604089,5.86829710006714,0.0007896392959687,5.8248102154e-05,0.0001089340845709,0.0009568214826936,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
|
1192 |
+
2024-07-16T15:39:30,codecarbon,d096648b-f303-4d3d-ac5a-9fdc25ba4b6b,235.5970430374145,0.0002842844445842,1.206655401609358e-06,42.5,2.685025126247984,5.86829710006714,0.0027813069951203,0.000184074313926,0.0003839093822234,0.0033492906912697,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
|
1193 |
+
2024-07-16T15:39:33,codecarbon,d096648b-f303-4d3d-ac5a-9fdc25ba4b6b,238.0650224685669,0.0002874680227063,1.2075189363206036e-06,42.5,6.42036074896236,5.86829710006714,0.0028104309995969,0.000188470428554,0.0003878965160565,0.0033867979442074,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
|
1194 |
+
2024-07-16T15:39:34,codecarbon,d096648b-f303-4d3d-ac5a-9fdc25ba4b6b,239.6065135002136,0.000289345043847,1.2075842163897178e-06,42.5,3.3948839976097465,5.86829710006714,0.0028286173697974,0.000189921263048,0.0003903733930622,0.0034089120259077,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
|
1195 |
+
2024-07-16T15:39:44,codecarbon,d096648b-f303-4d3d-ac5a-9fdc25ba4b6b,248.93785047531128,0.0003008502027623,1.2085353922189811e-06,42.5,3.9437988959904624,5.86829710006714,0.002938767170906,0.000200141549002,0.000405551073001,0.003544459792909,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
|
1196 |
+
2024-07-16T15:39:45,codecarbon,d096648b-f303-4d3d-ac5a-9fdc25ba4b6b,250.5285282135009,0.0003033510375035,1.210844288539738e-06,42.5,18.5719718781577,5.86829710006714,0.0029574990989433,0.0002083168333199,0.0004081073880347,0.0035739233202981,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
|
1197 |
+
2024-07-16T15:42:04,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,0.0248885154724121,2.53090861260216e-08,1.0168981815759837e-06,42.5,0.0,5.86829710006714,2.8206027216381496e-07,0.0,1.6118148011040985e-08,2.98178420174856e-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
|
1198 |
+
2024-07-16T15:42:06,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,2.1648406982421875,3.233315988625156e-06,1.4935583903474055e-06,42.5,15.328981724609308,5.86829710006714,2.553331818845537e-05,9.094729497999623e-06,3.46519078978948e-06,3.809323847624448e-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
|
1199 |
+
2024-07-16T15:42:35,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,30.912878036499023,3.794954293989112e-05,1.2276289155310567e-06,42.5,2.8579465124578136,5.86829710006714,0.0003648975582586,3.191308108599963e-05,5.029103409509418e-05,0.0004471016734397,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
|
1200 |
+
2024-07-16T15:42:40,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,35.37882471084595,4.394812061399466e-05,1.2422153922066738e-06,42.5,8.640648372754582,5.86829710006714,0.0004176088195708,4.2625034099998994e-05,5.753992563850158e-05,0.0005177737793093,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
|
1201 |
+
2024-07-16T15:42:42,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,38.038208961486816,4.7519850074822285e-05,1.2492662344574505e-06,42.5,8.668253798129497,5.86829710006714,0.0004489922222163,4.902115032799984e-05,6.184065583509058e-05,0.0005598540283794,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
|
1202 |
+
2024-07-16T15:42:44,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,39.73555374145508,4.968188949416005e-05,1.2503132539041029e-06,42.5,5.78699227978644,5.86829710006714,0.0004690066405468,5.174309694999917e-05,6.457630892405462e-05,0.0005853260464209,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
|
1203 |
+
2024-07-16T15:42:46,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,41.93739724159241,5.23949620477925e-05,1.2493613217328743e-06,42.5,3.9732185529054025,5.86829710006714,0.0004950006263123,5.4169487779999297e-05,6.811993465694665e-05,0.0006172900487493,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
|
1204 |
+
2024-07-16T15:42:53,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,49.16929960250855,6.116974881587611e-05,1.2440638632313429e-06,42.5,3.147260856082404,5.86829710006714,0.0005803195705016,6.048532616599947e-05,7.986510198780707e-05,0.0007206699986554,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
|
1205 |
+
2024-07-16T15:42:54,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,49.34293484687805,6.168876814743662e-05,1.2502046815591816e-06,42.5,78.76917520780407,5.86829710006714,0.0005823924915658,6.428338475999908e-05,8.010893673085491e-05,0.0007267848130566,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
|
1206 |
+
2024-07-16T15:42:54,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,49.67424178123474,6.222724096181093e-05,1.252706407394391e-06,42.5,21.21182989328804,5.86829710006714,0.0005862919126947,6.621783075199967e-05,8.061907477458959e-05,0.0007331288182213,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
|
1207 |
+
2024-07-16T15:42:54,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,49.95994973182678,6.298161651022995e-05,1.260642111297157e-06,42.5,64.83227174956922,5.86829710006714,0.0005896534431311,7.130922371399988e-05,8.105380967115243e-05,0.0007420164765163,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
|
1208 |
+
2024-07-16T15:42:56,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,52.15740132331848,6.589985946376284e-05,1.2634804992537155e-06,42.5,8.050830138945125,5.86829710006714,0.0006155838090512,7.621228319199935e-05,8.460159698215316e-05,0.0007763976892254,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
|
1209 |
+
2024-07-16T15:42:58,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,53.38538336753845,6.761622444885615e-05,1.2665681162827598e-06,42.5,11.078686451916711,5.86829710006714,0.000630068910453,7.99789528719997e-05,8.657114077320481e-05,0.0007966190040982,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
|
1210 |
+
2024-07-16T15:42:59,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,54.45082330703735,6.93556694769066e-05,1.2737304096546674e-06,42.5,21.16311939435669,5.86829710006714,0.0006426231834623,8.621868008599955e-05,8.827037242175124e-05,0.0008171122359701,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
|
1211 |
+
2024-07-16T15:43:00,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,55.58291816711426,7.095082468985299e-05,1.2764861405177388e-06,42.5,11.79076161456828,5.86829710006714,0.0006559235084387,8.990201636599904e-05,9.0079995875853e-05,0.0008359055206806,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
|
1212 |
+
2024-07-16T15:43:01,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,56.692391872406006,7.26905157089341e-05,1.2821917246415369e-06,42.5,18.599271523439565,5.86829710006714,0.000668959077696,9.559146536199884e-05,9.1851107632203e-05,0.0008564016506902,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
|
1213 |
+
2024-07-16T15:43:02,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,57.74451804161072,7.448480454565795e-05,1.289902610183432e-06,42.5,23.87867044913753,5.86829710006714,0.0006814185584584,0.0001025786931739,9.354377200890772e-05,0.0008775410236413,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
|
1214 |
+
2024-07-16T15:43:03,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,58.86994171142578,7.601914229716116e-05,1.2913065664273789e-06,42.5,9.614346408159683,5.86829710006714,0.0006946932756238,0.0001055789733519,9.534553984307006e-05,0.0008956177888189,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
|
1215 |
+
2024-07-16T15:43:03,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,59.01500821113586,7.660252566788866e-05,1.298017707526712e-06,42.5,125.74743314316191,5.86829710006714,0.0006963955786493,0.0001105459217699,9.554940625829972e-05,0.0009024909066776,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
|
1216 |
+
2024-07-16T15:43:07,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,62.329216718673706,8.059003850421205e-05,1.2929737087497754e-06,42.5,2.713210187807671,5.86829710006714,0.0007355099057157,0.0001130414793219,0.0001009183130525,0.0009494696980903,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
|
1217 |
+
2024-07-16T15:43:41,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,97.02837181091309,0.0001223684226592,1.261161249801672e-06,42.5,2.703442853202491,5.86829710006714,0.0011451407099763,0.000139096777944,0.0001574432889416,0.001441680776862,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
|
1218 |
+
2024-07-16T15:43:41,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,97.165540933609,0.0001227197832415,1.2629969643803498e-06,42.5,63.05480665707562,5.86829710006714,0.0011467482657896,0.0001414467798239,0.0001576252779236,0.0014458203235373,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
|
1219 |
+
2024-07-16T15:47:06,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,301.4500548839569,0.0003683109022855,1.2217974298507925e-06,42.5,2.6217532479124337,5.86829710006714,0.0035584404443701,0.0002902182877299,0.0004905877515483,0.0043392464836484,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
|
1220 |
+
2024-07-16T15:47:06,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,301.61637687683105,0.0003685981241283,1.2220759626684877e-06,42.5,27.45404486155829,5.86829710006714,0.0035603685622413,0.0002914485664919,0.0004908132524955,0.0043426303812289,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
|
1221 |
+
2024-07-16T15:47:34,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,329.39618730545044,0.0004025458607411,1.2220720101044517e-06,42.5,3.4644425057137145,5.86829710006714,0.0038883362342913,0.0003181813656559,0.0005360672648732,0.0047425848648206,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
|
1222 |
+
2024-07-16T15:47:34,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,329.55059838294983,0.0004032627935668,1.2236748940695285e-06,42.5,152.822272102252,5.86829710006714,0.0038901473437746,0.0003246063707959,0.0005362776779623,0.0047510313925329,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
|
1223 |
+
2024-07-16T15:47:48,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,343.39137053489685,0.000420079690131,1.223326286495499e-06,42.5,3.177103893602872,5.86829710006714,0.0040535339996218,0.0003368186027879,0.0005588066729239,0.0049491592753337,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
|
1224 |
+
2024-07-16T15:54:38,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,754.0185449123383,0.000913398123148,1.2113735521640389e-06,42.5,2.586544857615223,5.86829710006714,0.0089012047704723,0.0006318457832539,0.0012281285735963,0.0107611791273226,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
|
1225 |
+
2024-07-16T15:54:44,codecarbon,7aeb90d1-6bef-4d30-b350-27c6a3388813,759.9584259986877,0.0009207976683953,1.2116421594843084e-06,42.5,4.501454296096948,5.86829710006714,0.0089713150420122,0.0006392691225259,0.001237772536122,0.0108483567006603,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
|
1226 |
+
2024-07-16T15:59:30,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,0.039893627166748,4.00232576239245e-08,1.003249402633524e-06,42.5,0.0,5.86829710006714,4.472585188017952e-07,0.0,2.42745768275654e-08,4.715330956293606e-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
|
1227 |
+
2024-07-16T15:59:44,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,13.945924282073976,1.7088802182242686e-05,1.2253617498991123e-06,42.5,3.643520873745614,5.86829710006714,0.000164603826238,1.407112236800033e-05,2.2656384023254173e-05,0.0002013313326293,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
|
1228 |
+
2024-07-16T15:59:48,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,18.11348509788513,2.247379295195855e-05,1.240721640838875e-06,42.5,6.491124059645669,5.86829710006714,0.0002137793632017,2.1576406150000497e-05,2.9418709046448632e-05,0.0002647744783981,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
|
1229 |
+
2024-07-16T15:59:50,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,20.311599254608154,2.530274406447578e-05,1.2457287950251022e-06,42.5,6.329577973233374,5.86829710006714,0.0002397048907147,2.543390923599991e-05,3.2964901370845135e-05,0.0002981037013215,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
|
1230 |
+
2024-07-16T15:59:53,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,22.3921959400177,2.7986786612311843e-05,1.249845557232549e-06,42.5,6.456092103808784,5.86829710006714,0.0002642436052362,2.9159745550000164e-05,3.6322336513494617e-05,0.0003297256872997,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
|
1231 |
+
2024-07-16T15:59:54,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,23.871628046035767,2.9847444243807868e-05,1.2503313216110734e-06,42.5,5.102350275144075,5.86829710006714,0.0002816966823405,3.1252247223999795e-05,3.869805312617776e-05,0.0003516469826907,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
|
1232 |
+
2024-07-16T15:59:58,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,28.01583886146545,3.549458393919271e-05,1.2669470335944125e-06,42.5,9.470217478308395,5.86829710006714,0.000330609397259,4.214614482800014e-05,4.542308795330106e-05,0.0004181786300403,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
|
1233 |
+
2024-07-16T16:00:04,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,33.650550365448,4.252227699602466e-05,1.2636428389499998e-06,42.5,4.589482206672698,5.86829710006714,0.0003970844263831,4.932115056800052e-05,5.456965833699296e-05,0.0005009752352881,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
|
1234 |
+
2024-07-16T16:00:15,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,44.38178586959839,5.591506325393002e-05,1.259865103630991e-06,42.5,4.560240419984186,5.86829710006714,0.0005238080092602,6.29161614440002e-05,7.203787001172979e-05,0.0006587620407159,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
|
1235 |
+
2024-07-16T16:00:18,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,47.736743211746216,6.0017926779481e-05,1.2572689869784172e-06,42.5,3.549961075458215,5.86829710006714,0.0005634091465009,6.622116408800012e-05,7.746952305046932e-05,0.0007070998336394,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
|
1236 |
+
2024-07-16T16:00:27,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,56.66009187698364,7.117182746934402e-05,1.2561191680357177e-06,42.5,4.672493661772774,5.86829710006714,0.0006687314333187,7.779839557200009e-05,9.197943098915517e-05,0.0008385092598798,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
|
1237 |
+
2024-07-16T16:00:27,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,56.87775254249573,7.210379228049296e-05,1.267697633211179e-06,42.5,138.1668447357035,5.86829710006714,0.0006712908183534,8.590451316800064e-05,9.22938504963536e-05,0.0008494891820178,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
|
1238 |
+
2024-07-16T16:00:27,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,57.274423122406006,7.264518636036931e-05,1.2683704592731235e-06,42.5,10.103523145276409,5.86829710006714,0.0006759737349218,8.699562515200078e-05,9.289824393146044e-05,0.0008558676040053,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
|
1239 |
+
2024-07-16T16:00:28,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,57.57192945480347,7.302365143799833e-05,1.268389858209028e-06,42.5,6.268560346937701,5.86829710006714,0.0006794741605718,8.750673667200053e-05,9.334558442999898e-05,0.0008603264816738,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
|
1240 |
+
2024-07-16T16:00:31,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,60.46971011161804,7.654048078190722e-05,1.2657656311006772e-06,42.5,3.175039262212212,5.86829710006714,0.0007136603997813,9.005979427000044e-05,9.803973221908915e-05,0.0009017599262704,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
|
1241 |
+
2024-07-16T16:00:32,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,62.1944465637207,7.86318715727446e-05,1.2642908799290155e-06,42.5,3.2076618243671264,5.86829710006714,0.0007339988703529,9.159396216400044e-05,0.0001008067665917,0.0009263995991086,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
|
1242 |
+
2024-07-16T16:00:32,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,62.330971002578735,7.899677394727098e-05,1.2673759557508378e-06,42.5,65.32962411617667,5.86829710006714,0.0007356342857082,9.406368636200035e-05,0.00010100071603,0.0009306986881003,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
|
1243 |
+
2024-07-16T16:00:34,codecarbon,a43cd889-aebb-48f6-b68a-f1f7b21335a8,64.27995800971985,8.178667664258092e-05,1.2723511211723855e-06,42.5,12.463769540338392,5.86829710006714,0.0007586320506201,0.0001007959139699,0.000104139898398,0.0009635678629882,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
|
1244 |
+
2024-07-16T16:37:14,codecarbon,8ea110ae-8547-4481-a30a-1add691be288,0.0356740951538085,3.7824955264101384e-08,1.0602919317510191e-06,42.5,0.0,5.86829710006714,4.2115251223246257e-07,0.0,2.448133435033621e-08,4.456338465827988e-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
|
1245 |
+
2024-07-16T16:41:45,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,0.0222589969635009,2.244551096469957e-08,1.008379263517778e-06,42.5,0.0,5.86829710006714,2.5097794002956815e-07,0.0,1.346333478162857e-08,2.644412748111968e-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
|
1246 |
+
2024-07-16T16:41:49,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,4.035966157913208,5.195280748639642e-06,1.2872458651451768e-06,42.5,6.330562918167236,5.86829710006714,4.7635020812352506e-05,7.052783420000326e-06,6.5202772558791374e-06,6.120808148823198e-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
|
1247 |
+
2024-07-16T16:43:18,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,93.41178131103516,0.0001125736194259,1.2051329912130468e-06,42.5,2.5896300094301288,5.86829710006714,0.0011027546008427,7.134311263000143e-05,0.0001521858127929,0.0013262835262657,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
|
1248 |
+
2024-07-16T16:43:21,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,96.14337682724,0.0001159731010527,1.2062515888239629e-06,42.5,4.503185080583254,5.86829710006714,0.0011349789462155,7.475478202600104e-05,0.0001566007131721,0.0013663344414137,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
|
1249 |
+
2024-07-16T16:43:23,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,97.95506477355956,0.0001184690294702,1.2094221952082754e-06,42.5,10.18940848256699,5.86829710006714,0.001156355076366,7.986839722800079e-05,0.0001595166914669,0.0013957401650609,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
|
1250 |
+
2024-07-16T16:49:05,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,439.8174395561218,0.0005291822826187,1.2031862200662555e-06,42.5,2.587758851496316,5.86829710006714,0.0051922006648447,0.000325603316038,0.0007167449961168,0.0062345489769996,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
|
1251 |
+
2024-07-16T16:49:10,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,444.7800984382629,0.0005353886537824,1.2037153992777873e-06,42.5,4.712765167379676,5.86829710006714,0.0052507757855786,0.00033209471012,0.0007247987014223,0.0063076691971209,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
|
1252 |
+
2024-07-16T16:49:24,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,458.9092900753021,0.000552374044574,1.2036671658650106e-06,42.5,2.639162063923248,5.86829710006714,0.0054175433311197,0.000342449162848,0.0007477896968457,0.0065077821908135,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
|
1253 |
+
2024-07-16T16:49:32,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,467.0307056903839,0.0005623807046326,1.2041621627454544e-06,42.5,3.919040987957133,5.86829710006714,0.0055134329196479,0.00035127944769,0.00076096306042,0.0066256754277579,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
|
1254 |
+
2024-07-16T16:49:32,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,467.349693775177,0.0005631147763564,1.2049109774902351e-06,42.5,50.278313855827705,5.86829710006714,0.0055171857559018,0.000355691117886,0.0007614470032183,0.0066343238770062,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
|
1255 |
+
2024-07-16T16:49:34,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,469.3445444107056,0.0005660966296966,1.2061429848032302e-06,42.5,15.110973839062783,5.86829710006714,0.0055407360759046,0.000364056124578,0.0007646623135507,0.0066694545140333,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
|
1256 |
+
2024-07-16T16:49:37,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,472.1354794502258,0.0005700062368434,1.2072937994559732e-06,42.5,11.095345463609508,5.86829710006714,0.0055736846145656,0.00037265168701,0.0007691791597685,0.0067155154613441,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
|
1257 |
+
2024-07-16T16:49:39,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,474.0367739200592,0.0005727849398832,1.208313302671785e-06,42.5,13.727899470775796,5.86829710006714,0.005596117825475,0.0003798905816899,0.0007722442805813,0.0067482526877463,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
|
1258 |
+
2024-07-16T16:49:41,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,476.32235622406006,0.0005760116812372,1.2092896201711663e-06,42.5,11.589431263471216,5.86829710006714,0.0056231003943416,0.00038724197646,0.0007759260965133,0.0067862684673149,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
|
1259 |
+
2024-07-16T16:49:50,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,484.9839856624603,0.0005868250870827,1.2099885860792376e-06,42.5,4.614926383986009,5.86829710006714,0.0057253322197331,0.00039833781867,0.0007899963229205,0.0069136663613236,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
|
1260 |
+
2024-07-16T16:49:50,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,485.1658408641815,0.0005871340265181,1.2101718156257115e-06,42.5,25.83668054832342,5.86829710006714,0.0057274524721834,0.000399605319684,0.0007902483323585,0.006917306124226,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
|
1261 |
+
2024-07-16T16:49:50,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,485.6137709617615,0.0005883974325668,1.2116572217495226e-06,42.5,71.56429094944244,5.86829710006714,0.0057327525291177,0.000408490049014,0.0007909483356023,0.0069321909137341,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
|
1262 |
+
2024-07-16T16:49:54,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,489.5490849018097,0.0005934516480259,1.2122413590968472e-06,42.5,6.164566106237397,5.86829710006714,0.0057791874955097,0.000415223665512,0.0007973258767141,0.0069917370377359,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
|
1263 |
+
2024-07-16T16:49:58,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,492.887193441391,0.0005980930229806,1.2134480890133714e-06,42.5,10.687664072342644,5.86829710006714,0.0058185721794764,0.000425118951206,0.0008027281600799,0.0070464192907623,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
|
1264 |
+
2024-07-16T16:50:26,codecarbon,8f166622-2047-4c8f-a0f0-b79b8a86624f,520.8702492713928,0.0006319792123063716,1.2133140896228973e-06,42.5,2.998423125311832,5.86829710006714,0.006148915880918504,0.000448423414294,0.0008483093611850917,0.007445648656397595,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
|
export_doc.py
CHANGED
@@ -10,6 +10,7 @@ from download_chart import construct_plot
|
|
10 |
from kaleido.scopes.plotly import PlotlyScope
|
11 |
import pandas as pd
|
12 |
import markdown
|
|
|
13 |
|
14 |
def colored_circle(color):
|
15 |
return f'<span style="display: inline-block; width: 15px; height: 15px; border-radius: 50%; background-color: {color};"></span>'
|
@@ -59,6 +60,7 @@ def create_pdf_from_markdown(logo_path, conversation,summary,brand_name,graph_ht
|
|
59 |
html_content = markdown.markdown(markdown_text,extensions=['markdown.extensions.tables'])
|
60 |
html_summary = markdown2.markdown(markdown_summary)
|
61 |
html_list_pps = markdown2.markdown(markdown_list_pps)
|
|
|
62 |
|
63 |
analysis_date = datetime.now().strftime("%Y-%m-%d")
|
64 |
# image_base64 = base64.b64encode(image_path).decode('utf-8')
|
@@ -111,6 +113,9 @@ def create_pdf_from_markdown(logo_path, conversation,summary,brand_name,graph_ht
|
|
111 |
<div class="page-break"></div>
|
112 |
<h2>Historique de la Conversation</h2>
|
113 |
{html_content}
|
|
|
|
|
|
|
114 |
</body>
|
115 |
</html>
|
116 |
"""
|
|
|
10 |
from kaleido.scopes.plotly import PlotlyScope
|
11 |
import pandas as pd
|
12 |
import markdown
|
13 |
+
from comparateur import get_table_empreintes_detailed
|
14 |
|
15 |
def colored_circle(color):
|
16 |
return f'<span style="display: inline-block; width: 15px; height: 15px; border-radius: 50%; background-color: {color};"></span>'
|
|
|
60 |
html_content = markdown.markdown(markdown_text,extensions=['markdown.extensions.tables'])
|
61 |
html_summary = markdown2.markdown(markdown_summary)
|
62 |
html_list_pps = markdown2.markdown(markdown_list_pps)
|
63 |
+
html_table = get_table_empreintes_detailed().to_html()
|
64 |
|
65 |
analysis_date = datetime.now().strftime("%Y-%m-%d")
|
66 |
# image_base64 = base64.b64encode(image_path).decode('utf-8')
|
|
|
113 |
<div class="page-break"></div>
|
114 |
<h2>Historique de la Conversation</h2>
|
115 |
{html_content}
|
116 |
+
<div class="page-break"></div>
|
117 |
+
<h2>Emission de CO2</h2>
|
118 |
+
{html_table}
|
119 |
</body>
|
120 |
</html>
|
121 |
"""
|
high_chart.py
CHANGED
@@ -197,4 +197,5 @@ def test_chart():
|
|
197 |
|
198 |
if col1.button("Sauvegarder",key="save"):
|
199 |
st.session_state['pp_grouped'] = chart.copy()
|
|
|
200 |
return "saved"
|
|
|
197 |
|
198 |
if col1.button("Sauvegarder",key="save"):
|
199 |
st.session_state['pp_grouped'] = chart.copy()
|
200 |
+
st.session_state["partial_emissions"]["cartographie"]["cc"] += st.session_state["emission"].stop()
|
201 |
return "saved"
|
partie_prenante_carte.py
CHANGED
@@ -379,6 +379,7 @@ def display_pp():
|
|
379 |
st.session_state["latest_doc"] = ""
|
380 |
else:
|
381 |
# Création de l'expander
|
|
|
382 |
st.session_state["latest_doc"] = docs
|
383 |
|
384 |
with st.spinner("Processing..."):
|
@@ -398,6 +399,8 @@ def display_pp():
|
|
398 |
partie_prenante = sorted(partie_prenante)
|
399 |
st.session_state["urls"].append(url)
|
400 |
add_pp(partie_prenante)
|
|
|
|
|
401 |
|
402 |
# alphabet = [ pp[0] for pp in partie_prenante]
|
403 |
# pouvoir = [ 50 for _ in range(len(partie_prenante))]
|
|
|
379 |
st.session_state["latest_doc"] = ""
|
380 |
else:
|
381 |
# Création de l'expander
|
382 |
+
st.session_state["partial_emissions"]["Scrapping"]["cc"] += st.session_state["emission"].stop()
|
383 |
st.session_state["latest_doc"] = docs
|
384 |
|
385 |
with st.spinner("Processing..."):
|
|
|
399 |
partie_prenante = sorted(partie_prenante)
|
400 |
st.session_state["urls"].append(url)
|
401 |
add_pp(partie_prenante)
|
402 |
+
st.session_state["partial_emissions"]["extraction_pp"]["cc"] += st.session_state["emission"].stop()
|
403 |
+
|
404 |
|
405 |
# alphabet = [ pp[0] for pp in partie_prenante]
|
406 |
# pouvoir = [ 50 for _ in range(len(partie_prenante))]
|
temp.html
CHANGED
The diff for this file is too large to render.
See raw diff
|
|