scy639 commited on
Commit
66305e7
·
verified ·
1 Parent(s): fddd19d

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. .gitignore +11 -0
  2. download_checkpoints.py +5 -0
.gitignore CHANGED
@@ -6,14 +6,24 @@ checkpoints
6
 
7
 
8
 
 
 
9
 
10
 
11
 
12
 
 
 
 
 
 
 
13
 
14
  # pose model (For quantitative analysis only)
15
  Other_dependencies/Hopenet_pose/hopenet_robust_alpha1.pkl
16
 
 
 
17
 
18
  # Qantitative results
19
  Quantitative_Analysis/*
@@ -59,6 +69,7 @@ ttt*
59
 
60
 
61
  *.pt
 
62
  *.ckpt
63
 
64
 
 
6
 
7
 
8
 
9
+ #face parsing model (segmentation) Done
10
+ Other_dependencies/face_parsing/79999_iter.pth
11
 
12
 
13
 
14
 
15
+ # Expression model (For quantitative analysis only) Not used
16
+ Other_dependencies/face_recon/epoch_latest.pth
17
+ eval_tool/Deep3DFaceRecon_pytorch_edit/BFM/*.mat
18
+
19
+ # Arcface model
20
+ Other_dependencies/arcface/model_ir_se50.pth
21
 
22
  # pose model (For quantitative analysis only)
23
  Other_dependencies/Hopenet_pose/hopenet_robust_alpha1.pkl
24
 
25
+ # Landmark detection model
26
+ Other_dependencies/DLIB_landmark_det/shape_predictor_68_face_landmarks.dat
27
 
28
  # Qantitative results
29
  Quantitative_Analysis/*
 
69
 
70
 
71
  *.pt
72
+ *.pth
73
  *.ckpt
74
 
75
 
download_checkpoints.py CHANGED
@@ -21,5 +21,10 @@ def _download(repo_id, filename, local_path: Path) -> Path:
21
 
22
 
23
  _download("CompVis/stable-diffusion-v-1-4-original",SD14_filename, SD14_localpath)
 
24
  _download("scy639/UniBioTransfer",PRETRAIN_CKPT_PATH, ".")
25
  _download("scy639/UniBioTransfer",PRETRAIN_JSON_PATH, ".")
 
 
 
 
 
21
 
22
 
23
  _download("CompVis/stable-diffusion-v-1-4-original",SD14_filename, SD14_localpath)
24
+
25
  _download("scy639/UniBioTransfer",PRETRAIN_CKPT_PATH, ".")
26
  _download("scy639/UniBioTransfer",PRETRAIN_JSON_PATH, ".")
27
+
28
+ _download("scy639/UniBioTransfer","Other_dependencies/arcface/model_ir_se50.pth", ".")
29
+ _download("scy639/UniBioTransfer","Other_dependencies/DLIB_landmark_det/shape_predictor_68_face_landmarks.dat", ".")
30
+ _download("scy639/UniBioTransfer","Other_dependencies/face_parsing/79999_iter.pth", ".")