Added call to build_multiscale_deform
Browse files
app.py
CHANGED
|
@@ -39,13 +39,14 @@ def build_custom_prompter():
|
|
| 39 |
script = file.read()
|
| 40 |
return call(script, shell=True)
|
| 41 |
|
| 42 |
-
def
|
| 43 |
-
with open('./
|
| 44 |
script = file.read()
|
| 45 |
return call(script, shell=True)
|
| 46 |
|
| 47 |
build_custom_prompter()
|
| 48 |
from gradio_image_prompter import ImagePrompter
|
|
|
|
| 49 |
#print("torch version")
|
| 50 |
#print(torch.version.cuda)
|
| 51 |
#install_add_dependencies()
|
|
|
|
| 39 |
script = file.read()
|
| 40 |
return call(script, shell=True)
|
| 41 |
|
| 42 |
+
def build_multiscale_deform():
|
| 43 |
+
with open('./build_multiscale_deform.sh', 'rb') as file:
|
| 44 |
script = file.read()
|
| 45 |
return call(script, shell=True)
|
| 46 |
|
| 47 |
build_custom_prompter()
|
| 48 |
from gradio_image_prompter import ImagePrompter
|
| 49 |
+
build_multiscale_deform()
|
| 50 |
#print("torch version")
|
| 51 |
#print(torch.version.cuda)
|
| 52 |
#install_add_dependencies()
|