add classification

This commit is contained in:
Pritimay Sarkar
2023-09-25 14:59:52 +05:30
parent f2817da52a
commit c0f6526c78

View File

@@ -39,7 +39,7 @@ if __name__ == "__main__":
delta = datetime.strptime(end_time, "%Y-%m-%d %H:%M:%S") - datetime.strptime(start_time, "%Y-%m-%d %H:%M:%S")
total_deta = total_deta + delta
total_count = total_count + 1
print(combined_data['_id'], combined_data["incubationTime"], combined_data["testTime"], delta)
print(combined_data['_id'], combined_data["incubationTime"], combined_data["testTime"], delta, combined_data["classificationResult"])
print("tests count", total_count)
print("incubation avg:", total_deta / total_count)