jer233 commited on
Commit
2ca9576
·
verified ·
1 Parent(s): a3079c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
- from relative_tester import relative_tester
3
  # from two_sample_tester import two_sample_tester
4
- from utils import init_random_seeds
5
 
6
  init_random_seeds()
7
 
@@ -10,7 +10,7 @@ def run_test(input_text):
10
  if not input_text:
11
  return "Now that you've built a demo, you'll probably want to share it with others. Gradio demos can be shared in two ways: using a temporary share link or permanent hosting on Spaces."
12
  # return two_sample_tester.test(input_text.strip())
13
- return relative_tester.test(input_text.strip())
14
  return f"Prediction: Human (Mocked for {input_text})"
15
 
16
  # TODO: Add model selection in the future
 
1
  import gradio as gr
2
+ # from relative_tester import relative_tester
3
  # from two_sample_tester import two_sample_tester
4
+ # from utils import init_random_seeds
5
 
6
  init_random_seeds()
7
 
 
10
  if not input_text:
11
  return "Now that you've built a demo, you'll probably want to share it with others. Gradio demos can be shared in two ways: using a temporary share link or permanent hosting on Spaces."
12
  # return two_sample_tester.test(input_text.strip())
13
+ # return relative_tester.test(input_text.strip())
14
  return f"Prediction: Human (Mocked for {input_text})"
15
 
16
  # TODO: Add model selection in the future