Newbyl commited on
Commit
bb261db
·
1 Parent(s): 1f052c0

modif app

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -6,10 +6,10 @@ import itertools
6
  from pathlib import Path
7
 
8
  # List of methods that already have results
9
- EXISTING_METHODS = ["Liveportrait", "ControlTalk", "Lia", "Hallo2", "Echomimic", "Dimitra", "Sadtalker", "Wav2Lip"]
10
 
11
  # List of new methods to compare
12
- NEW_METHODS = ["First-Order-Motion", "X-Portrait", "MCNET", "EMOPortrait", "DaGAN", "LIA-X", "OmniAvatar", "Real3DPortrait"]
13
 
14
  # Number of videos per new method to compare
15
  VIDEOS_PER_NEW_METHOD = 23
@@ -267,7 +267,7 @@ def create_app(videos_dir):
267
 
268
  if __name__ == "__main__":
269
  # Set the directory containing the method folders
270
- videos_directory = input("Enter the directory containing the method folders: ").strip()
271
  if not videos_directory:
272
  videos_directory = "." # Default to current directory
273
 
 
6
  from pathlib import Path
7
 
8
  # List of methods that already have results
9
+ EXISTING_METHODS = ["liveportrait", "controltalk", "lia", "hallo2", "echomimic", "dimitra", "sadtalker", "wav2Lip"]
10
 
11
  # List of new methods to compare
12
+ NEW_METHODS = ["fom", "xportrait", "mcnet", "emoortrait", "dagan", "liax", "omniavatar", "real3d"]
13
 
14
  # Number of videos per new method to compare
15
  VIDEOS_PER_NEW_METHOD = 23
 
267
 
268
  if __name__ == "__main__":
269
  # Set the directory containing the method folders
270
+ videos_directory = "common_videos"
271
  if not videos_directory:
272
  videos_directory = "." # Default to current directory
273