Skip to content

Commit

Permalink
FIX: add missing insert to master table in trigger step
Browse files Browse the repository at this point in the history
  • Loading branch information
sidhulyalkar committed Jan 19, 2024
1 parent a42f92a commit 60440d3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions element_facemap/facemap_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,14 @@ def make(self, key):
total_frame_count,
creation_time,
) = _load_facemap_results(key, facemap_result_path, full_metadata_path)
self.insert1(
{
**key,
"inference_completion_time": creation_time,
"inference_run_duration": inference_duration,
"total_frame_count": total_frame_count,
}
)
self.BodyPartPosition.insert(body_part_position_entry)

@classmethod
Expand Down

0 comments on commit 60440d3

Please sign in to comment.