wmpscc commited on
Commit
3adf6e3
1 Parent(s): 42c0767
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -1,6 +1,13 @@
1
- import gradio as gr
 
 
 
 
 
 
2
 
3
- #from models.stylegene.api import synthesize_descendant
 
4
 
5
  description = """<p style="text-align: center; font-weight: bold;">
6
  <span style="font-size: 28px">StyleGene: Crossover and Mutation of Region-Level Facial Genes for Kinship Face Synthesis</span>
 
1
+ import os
2
+ os.system("wget https://huggingface.co/wmpscc/StyleGene/resolve/main/e4e_ffhq_encode.pt -o ./checkpoints/e4e_ffhq_encode.pt")
3
+ os.system("wget https://huggingface.co/wmpscc/StyleGene/resolve/main/res34_fair_align_multi_7_20190809.pt -o ./checkpoints/res34_fair_align_multi_7_20190809.pt")
4
+ os.system("wget https://huggingface.co/wmpscc/StyleGene/resolve/main/shape_predictor_68_face_landmarks.dat.bz2 -o ./checkpoints/shape_predictor_68_face_landmarks.dat.bz2")
5
+ os.system("wget https://huggingface.co/wmpscc/StyleGene/resolve/main/stylegan2-ffhq-config-f.pt -o ./checkpoints/stylegan2-ffhq-config-f.pt")
6
+ os.system("wget https://huggingface.co/wmpscc/StyleGene/resolve/main/stylegene_N18.ckpt -o ./checkpoints/stylegene_N18.ckpt")
7
+ os.system("wget https://huggingface.co/wmpscc/StyleGene/resolve/main/geneFactorPool.pkl -o ./checkpoints/geneFactorPool.pkl")
8
 
9
+ import gradio as gr
10
+ from models.stylegene.api import synthesize_descendant
11
 
12
  description = """<p style="text-align: center; font-weight: bold;">
13
  <span style="font-size: 28px">StyleGene: Crossover and Mutation of Region-Level Facial Genes for Kinship Face Synthesis</span>