andreslu commited on
Commit
269d58a
Β·
1 Parent(s): 5e42615

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -11
app.py CHANGED
@@ -5,14 +5,6 @@ inductor = BartInductor()
5
 
6
  def bart(text):
7
  results = inductor.generate(text, return_scores=True)
8
- #results=[('<mask> is the capital and largest city of <mask>.', 0.0075895977795922415), ('<mask> is the largest city in <mask>.', 0.005302619071099926), ('<mask> is the most populous state in <mask>.', 0.0036559513972044544), ('<mask> is the capital of <mask>.', 0.0028800265140167813), ('<mask> is a state in <mask>.', 0.002295685033583364), ('<mask> is a capital of <mask>.', 0.001348920570936385), ('<mask> has one of the highest rates of poverty in <mask>.', 0.0012284877234430835), ('<mask> is a major commercial and financial centre of <mask>.', 0.001225910195650215), ('<mask> was then a part of <mask>.', 0.0007620440367924856), ('<mask>, the capital of the country, is the largest city in <mask>.', 0.0006940517028590776)]
9
- results = [(result[0], float(result[1]) * 100) for result in results]
10
- results_dict = {result[0]: float(result[1]) for result in results}
11
- return results_dict
12
-
13
- def bart2(text):
14
- #results = inductor.generate(text)
15
- results=[('<mask> is the capital and largest city of <mask>.', 0.0075895977795922415), ('<mask> is the largest city in <mask>.', 0.005302619071099926), ('<mask> is the most populous state in <mask>.', 0.0036559513972044544), ('<mask> is the capital of <mask>.', 0.0028800265140167813), ('<mask> is a state in <mask>.', 0.002295685033583364), ('<mask> is a capital of <mask>.', 0.001348920570936385), ('<mask> has one of the highest rates of poverty in <mask>.', 0.0012284877234430835), ('<mask> is a major commercial and financial centre of <mask>.', 0.001225910195650215), ('<mask> was then a part of <mask>.', 0.0007620440367924856), ('<mask>, the capital of the country, is the largest city in <mask>.', 0.0006940517028590776)]
16
  results = [(result[0], float(result[1]) * 100) for result in results]
17
  results_dict = {result[0]: float(result[1]) for result in results}
18
  return results_dict
@@ -21,15 +13,15 @@ bivar = gr.Interface(fn=bart,
21
  inputs=gr.inputs.Textbox(default='<mask> is the capital of <mask>.'),
22
  outputs=gr.Label(),
23
  title="BART Inductor εŒε˜ι‡",
24
- examples=[['<mask> is the capital of <mask>.'],['<mask> is founder of <mask>.']],
25
  description="Enter a text prompt to generate text using BART.")
26
 
27
- trivar = gr.Interface(fn=bart2,
28
  inputs=gr.inputs.Textbox(default='<mask> is the parent of <mask>, who is the sibling of <mask>.'),
29
  outputs=gr.Label(),
30
  title="BART Inductor δΈ‰ε˜ι‡",
31
  examples=[['<mask> is the parent of <mask>, who is the sibling of <mask>.']],
32
- description="Still working on it!!!!!!!!!!!!!!!!!!!!")
33
 
34
  demo = gr.TabbedInterface([bivar, trivar], ["εŒε˜ι‡", "δΈ‰ε˜ι‡"])
35
 
 
5
 
6
  def bart(text):
7
  results = inductor.generate(text, return_scores=True)
 
 
 
 
 
 
 
 
8
  results = [(result[0], float(result[1]) * 100) for result in results]
9
  results_dict = {result[0]: float(result[1]) for result in results}
10
  return results_dict
 
13
  inputs=gr.inputs.Textbox(default='<mask> is the capital of <mask>.'),
14
  outputs=gr.Label(),
15
  title="BART Inductor εŒε˜ι‡",
16
+ examples=[['<mask> is the capital city of <mask>.'],['<mask> is founder and CEO of <mask>.']],
17
  description="Enter a text prompt to generate text using BART.")
18
 
19
+ trivar = gr.Interface(fn=bart,
20
  inputs=gr.inputs.Textbox(default='<mask> is the parent of <mask>, who is the sibling of <mask>.'),
21
  outputs=gr.Label(),
22
  title="BART Inductor δΈ‰ε˜ι‡",
23
  examples=[['<mask> is the parent of <mask>, who is the sibling of <mask>.']],
24
+ description="this might not work so well")
25
 
26
  demo = gr.TabbedInterface([bivar, trivar], ["εŒε˜ι‡", "δΈ‰ε˜ι‡"])
27