Exemple #1
0
 def test_custom_img(self):
     max_pixel_value = lambda img: img.max()
     custom = lambda img: img.tolist()
     img_interface = Interface(max_pixel_value, "image", "label", interpretation=custom)
     result = img_interface.interpret([gradio.test_data.BASE64_IMAGE])[0]
     expected_result = np.asarray(decode_base64_to_image(gradio.test_data.BASE64_IMAGE).convert('RGB')).tolist()
     self.assertEqual(result, expected_result)
Exemple #2
0
 def test_default_image(self):
     max_pixel_value = lambda img: img.max()
     img_interface = Interface(max_pixel_value, "image", "number", interpretation="default")
     array = np.zeros((100,100))
     array[0, 0] = 1
     img = encode_array_to_base64(array)        
     interpretation = img_interface.interpret([img])[0]        
     self.assertGreater(interpretation[0][0], 0)  # Checks to see if the top-left has >0 score.
Exemple #3
0
 def test_shapley_text(self):
     max_word_len = lambda text: max([len(word) for word in text.split(" ")])
     text_interface = Interface(
         max_word_len, "textbox", "label", interpretation="shapley"
     )
     interpretation = text_interface.interpret(["quickest brown fox"])[0][
         "interpretation"
     ][0]
     self.assertGreater(
         interpretation[1], 0
     )  # Checks to see if the first word has >0 score.
Exemple #4
0
 def test_custom_text(self):
     max_word_len = lambda text: max([len(word) for word in text.split(" ")])
     custom = lambda text: [(char, 1) for char in text]
     text_interface = Interface(
         max_word_len, "textbox", "label", interpretation=custom
     )
     result = text_interface.interpret(["quickest brown fox"])[0]["interpretation"][
         0
     ]
     self.assertEqual(
         result[1], 1
     )  # Checks to see if the first letter has score of 1.
Exemple #5
0
 def test_default_text(self):
     max_word_len = lambda text: max(
         [len(word) for word in text.split(" ")])
     text_interface = Interface(max_word_len,
                                "textbox",
                                "label",
                                interpretation="default")
     interpretation = text_interface.interpret(["quickest brown fox"])[0][0]
     self.assertGreater(interpretation[0][1],
                        0)  # Checks to see if the first word has >0 score.
     self.assertEqual(interpretation[-1][1],
                      0)  # Checks to see if the last word has 0 score.
 def test_interpretation(self):
     io = Interface(lambda x: len(x),
                    "text",
                    "label",
                    interpretation="default",
                    analytics_enabled=True)
     app, _, _ = io.launch(prevent_thread_lock=True)
     client = TestClient(app)
     aiohttp.ClientSession.post = mock.MagicMock()
     aiohttp.ClientSession.post.__aenter__ = None
     aiohttp.ClientSession.post.__aexit__ = None
     io.interpret = mock.MagicMock(return_value=(None, None))
     response = client.post('/api/interpret/', json={"data": ["test test"]})
     aiohttp.ClientSession.post.assert_called()
     self.assertEqual(response.status_code, 200)
     io.close()