Skip to content

Commit

Permalink
change inference_start_time to inference_completion_time
Browse files Browse the repository at this point in the history
  • Loading branch information
sidhulyalkar committed Jan 13, 2024
1 parent f98901c commit cc2e585
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions element_facemap/facemap_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,15 +295,15 @@ class FacemapInference(dj.Computed):
Attributes:
FacemapInferenceTask (foreign key): FacemapInferenceTask primary key.
inference_start_time (datetime): time of generation of this set of facemap results.
inference_completion_time (datetime): time of generation of this set of facemap results.
inference_run_duration (datetime): duration of model.
total_frame_count (int): Number of frames in all video files.
"""

definition = """
-> FacemapInferenceTask
---
inference_start_time: datetime # time of generation of this set of facemap results
inference_completion_time: datetime # time of generation of this set of facemap results
inference_run_duration: float # seconds
total_frame_count: int # frame count across all video files
"""
Expand Down Expand Up @@ -360,7 +360,7 @@ def make(self, key):
self.insert1(
{
**key,
"inference_start_time": creation_time,
"inference_completion_time": creation_time,
"inference_run_duration": inference_duration,
"total_frame_count": total_frame_count,
}
Expand Down

0 comments on commit cc2e585

Please sign in to comment.