nikigoli commited on
Commit
01bd988
1 Parent(s): 6212556

Added call to build_multiscale_deform

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -39,13 +39,14 @@ def build_custom_prompter():
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")
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()