Spaces:
Running
on
T4
Running
on
T4
Added build_multiscale_deform_atten with new python 3.10 wheel file
Browse files
app.py
CHANGED
@@ -39,6 +39,11 @@ def build_custom_prompter():
|
|
39 |
script = file.read()
|
40 |
return call(script, shell=True)
|
41 |
|
|
|
|
|
|
|
|
|
|
|
42 |
build_custom_prompter()
|
43 |
from gradio_image_prompter import ImagePrompter
|
44 |
#print("torch version")
|
|
|
39 |
script = file.read()
|
40 |
return call(script, shell=True)
|
41 |
|
42 |
+
def build_multiscale_deform_atten():
|
43 |
+
with open('./build_custom_prompter.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 |
#print("torch version")
|