mischeiwiller commited on
Commit
1fe50d6
1 Parent(s): 5dac4e2

comment out live=True because of gradio bug

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -78,7 +78,7 @@ box_blur_demo = gr.Interface(
78
  # title=title,
79
  # description=description,
80
  # article=article,
81
- live=True
82
  )
83
 
84
 
@@ -93,7 +93,7 @@ blur_pool2d_demo = gr.Interface(
93
  # title=title,
94
  # description=description,
95
  # article=article,
96
- live=True
97
  )
98
 
99
 
@@ -108,7 +108,7 @@ gaussian_blur_demo = gr.Interface(
108
  # title=title,
109
  # description=description,
110
  # article=article,
111
- live=True
112
  )
113
 
114
 
@@ -123,7 +123,7 @@ max_blur_pool2d_demo = gr.Interface(
123
  # title=title,
124
  # description=description,
125
  # article=article,
126
- live=True
127
  )
128
 
129
  median_blur_demo = gr.Interface(
@@ -137,7 +137,7 @@ median_blur_demo = gr.Interface(
137
  # title=title,
138
  # description=description,
139
  # article=article,
140
- live=True
141
  )
142
 
143
 
78
  # title=title,
79
  # description=description,
80
  # article=article,
81
+ # live=True # --> 2022.09.08: Bug with click and dragging button. See: https://huggingface.co/spaces/kornia/kornia-image-filtering/discussions/2#63206d3b54a96c8e65c1fed2
82
  )
83
 
84
 
93
  # title=title,
94
  # description=description,
95
  # article=article,
96
+ # live=True # --> 2022.09.08: Bug with click and dragging button. See: https://huggingface.co/spaces/kornia/kornia-image-filtering/discussions/2#63206d3b54a96c8e65c1fed2
97
  )
98
 
99
 
108
  # title=title,
109
  # description=description,
110
  # article=article,
111
+ # live=True # --> 2022.09.08: Bug with click and dragging button. See: https://huggingface.co/spaces/kornia/kornia-image-filtering/discussions/2#63206d3b54a96c8e65c1fed2
112
  )
113
 
114
 
123
  # title=title,
124
  # description=description,
125
  # article=article,
126
+ # live=True # --> 2022.09.08: Bug with click and dragging button. See: https://huggingface.co/spaces/kornia/kornia-image-filtering/discussions/2#63206d3b54a96c8e65c1fed2
127
  )
128
 
129
  median_blur_demo = gr.Interface(
137
  # title=title,
138
  # description=description,
139
  # article=article,
140
+ # live=True # --> 2022.09.08: Bug with click and dragging button. See: https://huggingface.co/spaces/kornia/kornia-image-filtering/discussions/2#63206d3b54a96c8e65c1fed2
141
  )
142
 
143