Ahsen Khaliq commited on
Commit
0678bec
·
1 Parent(s): 869d204

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,9 +7,9 @@ os.system("git clone https://github.com/AK391/PAMA.git")
7
  sys.path.append('./PAMA/')
8
 
9
  os.system("gdown https://drive.google.com/uc?id=1rPB_qnelVVSad6CtadmhRFi0PMI_RKdy")
10
- os.mkdir("checkpoints")
11
 
12
- os.system("unzip -j original_PAMA.zip -d checkpoints/")
13
 
14
  def inference(content,style):
15
  os.system("python main.py eval --content "+content+" --style "+style)
 
7
  sys.path.append('./PAMA/')
8
 
9
  os.system("gdown https://drive.google.com/uc?id=1rPB_qnelVVSad6CtadmhRFi0PMI_RKdy")
10
+ os.mkdirs("/PAMA/checkpoints/")
11
 
12
+ os.system("unzip -j original_PAMA.zip -d ./PAMA/checkpoints/")
13
 
14
  def inference(content,style):
15
  os.system("python main.py eval --content "+content+" --style "+style)