syke9p3 commited on
Commit
0ad0d6d
·
verified ·
1 Parent(s): 5ab279c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -623,7 +623,6 @@ def get_readme():
623
  tagger = gr.Interface(
624
  predict_tags,
625
  gr.Textbox(placeholder="Enter sentence here..."),
626
- gr.Markdown(get_readme()),
627
  ["highlight"],
628
  title="BERT Filipino Part of Speech Tagger",
629
  description="Enter a text in Tagalog to classify the tags for each word. Each word to tag needs to be space separated.",
@@ -631,6 +630,7 @@ tagger = gr.Interface(
631
  ["Ang bahay ay lumiliwanag na para bang may kumikislap sa bintana"],
632
  ["Naisip ko na kumain na lang tayo sa pinakasikat na restaurant sa Manila ."],
633
  ],
 
634
  )
635
 
636
  tagger.launch()
 
623
  tagger = gr.Interface(
624
  predict_tags,
625
  gr.Textbox(placeholder="Enter sentence here..."),
 
626
  ["highlight"],
627
  title="BERT Filipino Part of Speech Tagger",
628
  description="Enter a text in Tagalog to classify the tags for each word. Each word to tag needs to be space separated.",
 
630
  ["Ang bahay ay lumiliwanag na para bang may kumikislap sa bintana"],
631
  ["Naisip ko na kumain na lang tayo sa pinakasikat na restaurant sa Manila ."],
632
  ],
633
+ article=get_readme()
634
  )
635
 
636
  tagger.launch()