Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ os.mkdir("checkpoints/")
|
|
14 |
os.system("unzip -j original_PAMA.zip -d checkpoints/")
|
15 |
|
16 |
def inference(content,style,alpha):
|
17 |
-
os.system("python main.py eval --content "+content+" --style "+style+" --alpha " +(alpha / 100.0))
|
18 |
return "ics.jpg"
|
19 |
|
20 |
title = "PAMA"
|
|
|
14 |
os.system("unzip -j original_PAMA.zip -d checkpoints/")
|
15 |
|
16 |
def inference(content,style,alpha):
|
17 |
+
os.system("python main.py eval --content "+content+" --style "+style+" --alpha " +str(alpha / 100.0))
|
18 |
return "ics.jpg"
|
19 |
|
20 |
title = "PAMA"
|