Skip to content

Commit

Permalink
update renamed variable file_set_id in FacemapModelTraining
Browse files Browse the repository at this point in the history
  • Loading branch information
sidhulyalkar committed Oct 4, 2023
1 parent 3727884 commit a2df523
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions element_facemap/train_facial_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,12 +293,12 @@ def make(self, key):

video_files = [find_full_path(fbe.get_facemap_root_data_dir(), fp).as_posix()
for fp in (FacemapTrainFileSet.VideoFile &
{'video_set_id': key['video_set_id']}).fetch("file_path")]
{'file_set_id': key['file_set_id']}).fetch("file_path")]

# manually specified .h5 keypoints file
train_fileset = [find_full_path(fbe.get_facemap_root_data_dir(), fp).as_posix()
for fp in (FacemapTrainFileSet.File &
{'file_set_id': key['video_set_id']}).fetch("file_path")]
{'file_set_id': key['file_set_id']}).fetch("file_path")]

keypoints_file_name = (FacemapModelTrainingTask & key).fetch1("keypoints_filename")

Expand Down

0 comments on commit a2df523

Please sign in to comment.