Spanicin commited on
Commit
238117d
·
verified ·
1 Parent(s): a60f0f9

Update src/facerender/modules/make_animation.py

Browse files
src/facerender/modules/make_animation.py CHANGED
@@ -164,7 +164,7 @@ def make_animation(source_image, source_semantics, target_semantics,
164
  he_source = mapping(source_semantics)
165
  kp_source = keypoint_transformation(kp_canonical, he_source)
166
 
167
- for frame_idx in range(target_semantics.shape[1]):
168
  target_semantics_frame = target_semantics[:, frame_idx]
169
  he_driving = mapping(target_semantics_frame)
170
 
 
164
  he_source = mapping(source_semantics)
165
  kp_source = keypoint_transformation(kp_canonical, he_source)
166
 
167
+ for frame_idx in tqdm(range(target_semantics.shape[1]), desc='Face Renderer:', unit='frame'):
168
  target_semantics_frame = target_semantics[:, frame_idx]
169
  he_driving = mapping(target_semantics_frame)
170