Merge branch 'master' of github.com:gradio-app/gradio

This commit is contained in:
Abubakar Abid 2020-11-24 12:46:20 -06:00
commit 0c951f0d3a
6 changed files with 14 additions and 14 deletions

View File

@ -6,6 +6,7 @@ flask-cachebuster
paramiko
scipy
IPython
scikit-learn
scikit-image
analytics-python
pandas

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 432 KiB

After

Width:  |  Height:  |  Size: 432 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -38,28 +38,28 @@ def hide_latency(driver):
def diff_texts_thread(return_dict):
from demo.diff_texts import io
io.save_to = return_dict
io.launch()
from demo.diff_texts import iface
iface.save_to = return_dict
iface.launch()
def image_mod_thread(return_dict):
from demo.image_mod import io
io.examples = None
io.save_to = return_dict
io.launch()
from demo.image_mod import iface
iface.examples = None
iface.save_to = return_dict
iface.launch()
def longest_word_thread(return_dict):
from demo.longest_word import io
io.save_to = return_dict
io.launch()
from demo.longest_word import iface
iface.save_to = return_dict
iface.launch()
def sentence_builder_thread(return_dict):
from demo.sentence_builder import io
io.save_to = return_dict
io.launch()
from demo.sentence_builder import iface
iface.save_to = return_dict
iface.launch()
class TestDemo(unittest.TestCase):
@ -79,7 +79,6 @@ class TestDemo(unittest.TestCase):
driver = webdriver.Chrome()
driver.set_window_size(1200, 800)
driver.get(URL)
return driver
def test_diff_texts(self):