phucpx commited on
Commit
6ea353f
·
1 Parent(s): c2f3067

Add application file

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -32,6 +32,8 @@ weights_mapping = {
32
  }
33
  }
34
 
 
 
35
  template_los = """0. Identify the challenges in Matching sentence endings: More endings than questions, Some endings may be grammatically correct but not connected to the main ideas in the text, Information for possible endings is placed randomly in the passage
36
  1. Understand and apply the steps for answering Matching sentence endings questions effectively: Read and underline keywords in incomplete sentences and endings, Scan using keywords in incomplete sentences to locate the information area, and Match incomplete sentences with endings and compare to the information area"""
37
 
@@ -96,8 +98,8 @@ def generate_questions(model_name, user_level, num_questions, question_type, lan
96
  iface = gr.Interface(
97
  fn=generate_questions,
98
  inputs=[
99
- gr.Dropdown(list(MODEL2SERVICE.keys()), label="Model Usage", value=0),
100
- gr.Dropdown(["beginner", "intermediate", "advanced"], label="User Level", value=0),
101
  gr.Number(value=5, label="Number of Questions"),
102
  gr.Dropdown(["Short answer", "Single choice", "Multiple choice"], label="Question Type"),
103
  gr.Dropdown(["English", "Vietnamese"], label="Language"),
 
32
  }
33
  }
34
 
35
+ LIST_USER_LEVEL = ["beginner", "intermediate", "advanced"]
36
+
37
  template_los = """0. Identify the challenges in Matching sentence endings: More endings than questions, Some endings may be grammatically correct but not connected to the main ideas in the text, Information for possible endings is placed randomly in the passage
38
  1. Understand and apply the steps for answering Matching sentence endings questions effectively: Read and underline keywords in incomplete sentences and endings, Scan using keywords in incomplete sentences to locate the information area, and Match incomplete sentences with endings and compare to the information area"""
39
 
 
98
  iface = gr.Interface(
99
  fn=generate_questions,
100
  inputs=[
101
+ gr.Dropdown(list(MODEL2SERVICE.keys()), label="Model Usage", value=list[MODEL2SERVICE.keys()][0]),
102
+ gr.Dropdown(LIST_USER_LEVEL, label="User Level", value=LIST_USER_LEVEL[0]),
103
  gr.Number(value=5, label="Number of Questions"),
104
  gr.Dropdown(["Short answer", "Single choice", "Multiple choice"], label="Question Type"),
105
  gr.Dropdown(["English", "Vietnamese"], label="Language"),