Joao Henrique commited on
Commit
930b6f5
·
1 Parent(s): 882aca1
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -3,7 +3,6 @@ from gears import load_tensor, calc_preds
3
 
4
  coeffs = load_tensor()
5
 
6
- '''
7
  examples = [
8
  """
9
  -0.260648; -0.469648; 2.496266; -0.083724; 0.129681; 0.732898; 0.519014; -0.130006; 0.727159;
@@ -37,7 +36,6 @@ examples = [
37
  ans_examples = [0,0,1,1]
38
 
39
  # 0, 1, 541, 623
40
- '''
41
 
42
 
43
 
@@ -55,6 +53,7 @@ gr.Interface(
55
  fn=predict,
56
  inputs="text",
57
  outputs="text",
 
58
  ).launch(share=False)
59
 
60
 
 
3
 
4
  coeffs = load_tensor()
5
 
 
6
  examples = [
7
  """
8
  -0.260648; -0.469648; 2.496266; -0.083724; 0.129681; 0.732898; 0.519014; -0.130006; 0.727159;
 
36
  ans_examples = [0,0,1,1]
37
 
38
  # 0, 1, 541, 623
 
39
 
40
 
41
 
 
53
  fn=predict,
54
  inputs="text",
55
  outputs="text",
56
+ examples=examples
57
  ).launch(share=False)
58
 
59