p2oileen commited on
Commit
57d00dd
1 Parent(s): c34ed4d

add requirements.txt

Browse files
Files changed (3) hide show
  1. .gitignore +1 -1
  2. infer.sh +1 -1
  3. requirements.txt +8 -0
.gitignore CHANGED
@@ -5,7 +5,7 @@ weights/
5
  x264/
6
  *.mp3
7
  *.mp4
8
- *.txt
9
  *.png
10
  complex_infer.sh
11
  __pycache__/
 
5
  x264/
6
  *.mp3
7
  *.mp4
8
+ filelist.txt
9
  *.png
10
  complex_infer.sh
11
  __pycache__/
infer.sh CHANGED
@@ -1,7 +1,7 @@
1
  rm -r "./results"
2
  mkdir "./results"
3
 
4
- rlaunch --gpu=1 --cpu=4 --memory=25600 -- python3 -m torch.distributed.launch \
5
  --nproc_per_node=1 train.py --mode=test \
6
  --world_size=1 --dataloaders=2 \
7
  --test_input_poses_images=./test_data/ \
 
1
  rm -r "./results"
2
  mkdir "./results"
3
 
4
+ python3 -m torch.distributed.launch \
5
  --nproc_per_node=1 train.py --mode=test \
6
  --world_size=1 --dataloaders=2 \
7
  --test_input_poses_images=./test_data/ \
requirements.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ numpy>=1.16
2
+ tqdm>=4.35.0
3
+ torch>=1.3.0
4
+ opencv-python>=4.5.2
5
+ scikit-image>=0.14.0
6
+ torchvision>=0.2.1
7
+ pillow>=7.2.0
8
+ lpips>=0.1.3