Skip to content

Commit

Permalink
chore: minor function rename
Browse files Browse the repository at this point in the history
  • Loading branch information
ttngu207 committed Aug 21, 2024
1 parent ec330e7 commit 1a9d060
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions element_facemap/facial_behavior_estimation.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,14 +318,14 @@ def make(self, key):
]

@memoized_result(uniqueness_dict=params, output_directory=output_dir)
def run_facemap_process():
def _run_facemap_process():
facemap_run(
filenames=video_files,
savepath=output_dir.as_posix(),
**params,
)

run_facemap_process()
_run_facemap_process()

results_proc_fp = next(output_dir.glob("*_proc.npy"))
creation_time = datetime.fromtimestamp(results_proc_fp.stat().st_ctime)
Expand Down

0 comments on commit 1a9d060

Please sign in to comment.