NikilDGr8 commited on
Commit
2f83d91
1 Parent(s): 5cd099c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -13
app.py CHANGED
@@ -16,24 +16,24 @@ question_answerer = pipeline("question-answering", model='distilbert-base-cased-
16
 
17
  # List of questions
18
  questions = [
19
- "Which grade is the child studying?",
20
- "How old is the child?",
21
  "What is the gender?",
22
- "Can you provide the name and location of the child's school?",
23
- "What are the names of the child's guardians or paretnts?",
24
- "What is the chief complaint regarding the child's oral health? If there is none, just say the word 'none', else elaborate only on medication history",
25
- "Can you provide any relevant medical history for the child? If there is none, just say the word 'none', else elaborate",
26
- "Does the child take any medications regularly? If there is none, just say the word 'none'. If yes, please specify.",
27
- "When was the child's previous dental visit? If no visits before, just say the word 'first' or mention the visit number and nothing else",
28
- "Does the child have any habits such as thumb sucking, tongue thrusting, nail biting, or lip biting? If yes, just list them and don't provide any further details",
29
  "Does the patient brush their teeth? Just use the words 'once daily', 'twice daily', or 'thrice daily' to answer, nothing else",
30
- "Does the child experience bleeding gums? Just say 'yes' or 'no' for this and nothing else",
31
- "Has the child experienced early childhood caries? Just say 'yes' or 'no' and nothing else",
32
  "Please mention if tooth decay is present with tooth number(s), else just say the word 'none' and nothing else",
33
  "Have any teeth been fractured? If yes, please mention the tooth number(s), else just say 'none' and nothing else",
34
  "Is there any pre-shedding mobility of teeth? If yes, please specify, else just say 'none' and nothing else",
35
- "Does the child have malocclusion? If yes, please provide details, else just say the word 'none' and nothing else",
36
- "Does the child experience pain, swelling, or abscess? If yes, please provide details, else just say 'none' and nothing else",
37
  "Are there any other findings you would like to note?",
38
  "What treatment plan do you recommend? Choose only from Options: (Scaling, Filling, Pulp therapy/RCT, Extraction, Medication, Referral) and nothing else"
39
  ]
 
16
 
17
  # List of questions
18
  questions = [
19
+ "Which grade is the patient studying?",
20
+ "How old is the patient?",
21
  "What is the gender?",
22
+ "Can you provide the name and location of the patient's school?",
23
+ "What are the names of the patient's guardians or paretnts?",
24
+ "What is the chief complaint regarding the patient's oral health? If there is none, just say the word 'none', else elaborate only on medication history",
25
+ "Can you provide any relevant medical history for the patient? If there is none, just say the word 'none', else elaborate",
26
+ "Does the patient take any medications regularly? If there is none, just say the word 'none'. If yes, please specify.",
27
+ "When was the patient's previous dental visit? If no visits before, just say the word 'first' or mention the visit number and nothing else",
28
+ "Does the patient have any habits such as thumb sucking, tongue thrusting, nail biting, or lip biting? If yes, just list them and don't provide any further details",
29
  "Does the patient brush their teeth? Just use the words 'once daily', 'twice daily', or 'thrice daily' to answer, nothing else",
30
+ "Does the patient experience bleeding gums? Just say 'yes' or 'no' for this and nothing else",
31
+ "Has the patient experienced early patienthood caries? Just say 'yes' or 'no' and nothing else",
32
  "Please mention if tooth decay is present with tooth number(s), else just say the word 'none' and nothing else",
33
  "Have any teeth been fractured? If yes, please mention the tooth number(s), else just say 'none' and nothing else",
34
  "Is there any pre-shedding mobility of teeth? If yes, please specify, else just say 'none' and nothing else",
35
+ "Does the patient have malocclusion? If yes, please provide details, else just say the word 'none' and nothing else",
36
+ "Does the patient experience pain, swelling, or abscess? If yes, please provide details, else just say 'none' and nothing else",
37
  "Are there any other findings you would like to note?",
38
  "What treatment plan do you recommend? Choose only from Options: (Scaling, Filling, Pulp therapy/RCT, Extraction, Medication, Referral) and nothing else"
39
  ]