Tahsin-Mayeesha commited on
Commit
90b8c65
1 Parent(s): 29a372f
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -2,6 +2,9 @@ import torch
2
  from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
3
  import gradio as gr
4
 
 
 
 
5
  def choose_model(model_choice):
6
  if model_choice=="mt5-small":
7
  return "jannatul17/squad-bn-qgen-mt5-small-v1"
@@ -34,6 +37,8 @@ demo = gr.Interface(fn=generate__questions, inputs=[gr.Dropdown(label="Model", c
34
  gr.Textbox(label='Context'),
35
  gr.Textbox(label='Answer')] ,
36
  outputs=gr.Textbox(label='Question'),
 
 
37
  title="Bangla Question Generation",
38
  description="Get the Question from given Context and an Answer")
39
  demo.launch()
 
2
  from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
3
  import gradio as gr
4
 
5
+ example_context = "ফলস্বরূপ, ১৯৭৯ সালে, সনি এবং ফিলিপস একটি নতুন ডিজিটাল অডিও ডিস্ক ডিজাইন করার জন্য প্রকৌশলীদের একটি যৌথ টাস্ক ফোর্স গঠন করে। ইঞ্জিনিয়ার কিস শুহামার ইমমিনক এবং তোশিতাদা দোই এর নেতৃত্বে, গবেষণাটি লেজার এবং অপটিক্যাল ডিস্ক প্রযুক্তিকে এগিয়ে নিয়ে যায়। এক বছর পরীক্ষা-নিরীক্ষা ও আলোচনার পর টাস্ক ফোর্স রেড বুক সিডি-ডিএ স্ট্যান্ডার্ড তৈরি করে। প্রথম প্রকাশিত হয় ১৯৮০ সালে। আইইসি কর্তৃক ১৯৮৭ সালে আন্তর্জাতিক মান হিসেবে আনুষ্ঠানিকভাবে এই মান গৃহীত হয় এবং ১৯৯৬ সালে বিভিন্ন সংশোধনী মানের অংশ হয়ে ওঠে।'"
6
+ example_answer = "১৯৮০"
7
+
8
  def choose_model(model_choice):
9
  if model_choice=="mt5-small":
10
  return "jannatul17/squad-bn-qgen-mt5-small-v1"
 
37
  gr.Textbox(label='Context'),
38
  gr.Textbox(label='Answer')] ,
39
  outputs=gr.Textbox(label='Question'),
40
+ examples=[["banglat5",example_context,example_answer]],
41
+ cache_examples=False,
42
  title="Bangla Question Generation",
43
  description="Get the Question from given Context and an Answer")
44
  demo.launch()