Commit 54ccd927 authored by Dennis Willers's avatar Dennis Willers 🏀

Länge der Modells wurde falsch berechnet

parent a7fb5aa9
......@@ -95,7 +95,7 @@ def average_evaluate_cross_validation(worksheet, r, model_evaluate_metrics, trai
worksheet.cell(row=r, column=5).value = 'recall_not_oos'
worksheet.cell(row=r, column=6).value = 'duration'
r = r + 1
worksheet.cell(row=r, column=1).value = len(total_information)
worksheet.cell(row=r, column=1).value = len(training_duration_models)
worksheet.cell(row=r, column=2).value = total_information[0]
worksheet.cell(row=r, column=3).value = total_information[1]
worksheet.cell(row=r, column=4).value = total_information[2]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment