hosseinhimself commited on
Commit
a130b03
·
verified ·
1 Parent(s): d6f1646

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +62 -21
app.py CHANGED
@@ -74,35 +74,79 @@ description = {
74
  # Define the initial prompt for the LLM
75
  initial_prompt = '''
76
  You are an IELTS writing examiner. Below, you will receive a series of details pertaining to a writing task. Please evaluate the writing based on the information provided:
77
-
78
  {description}
79
-
80
  Please follow these steps for your evaluation:
81
-
82
  1. Provide a score on the IELTS scale (0-9 points).
83
  2. Leave a space.
84
  3. Detail the weaknesses and mistakes in the writing.
85
 
86
  Evaluate the writing based on the following four criteria:
87
- - Task Response
88
  - Coherence and Cohesion
89
- - Lexical Resource
90
  - Grammatical Range and Accuracy
91
-
92
- Respond in this exact format:
93
-
94
- Task type: [task type]
95
-
96
- Task number: [task number]
97
-
98
- score: [score]
99
-
100
- Weaknesses and Mistakes:
101
-
102
- [Weaknesses and Mistakes]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
 
104
  Notes:
105
-
106
  - The text may have been obtained via OCR, which could result in some errors.
107
  - Disregard any text enclosed in <>. They separate different parts of the text.
108
  - If the task type is empty, try to identify the task type from the question. If you cannot determine the task type, mention that the task type is unclear.
@@ -110,11 +154,8 @@ Notes:
110
  - If the specific question is not present in the task content, mention that the question does not exist in the task response.
111
 
112
  Task type: {task_type}
113
-
114
  Task number: {task_number}
115
-
116
  Question: {question}
117
-
118
  Task content: {content}
119
  '''
120
 
 
74
  # Define the initial prompt for the LLM
75
  initial_prompt = '''
76
  You are an IELTS writing examiner. Below, you will receive a series of details pertaining to a writing task. Please evaluate the writing based on the information provided:
 
77
  {description}
 
78
  Please follow these steps for your evaluation:
 
79
  1. Provide a score on the IELTS scale (0-9 points).
80
  2. Leave a space.
81
  3. Detail the weaknesses and mistakes in the writing.
82
 
83
  Evaluate the writing based on the following four criteria:
84
+ - Task Achievement
85
  - Coherence and Cohesion
86
+ - Lexical Resource (Vocabulary)
87
  - Grammatical Range and Accuracy
88
+ - Overall Band Score
89
+ - Feedback and Additional Comments
90
+ - Strategies for Enhancement
91
+
92
+ Below is an example of how to respond. respond this way:
93
+ ```
94
+ ## Task type: General Training
95
+
96
+ ## Task number: Task 2
97
+
98
+ ## Overall score: 4.0
99
+
100
+ ## Task Achievement:
101
+ - The candidate has partially addressed the given task.
102
+ - The essay presents a clear stance of disagreement with the statement that interviews are not a reliable method of choosing whom to employ.
103
+ - However, the ideas presented are not fully developed and lack specific examples or evidence to support the arguments.
104
+ - The essay does not adequately cover all aspects of the task, as it mainly focuses on the importance of interviews for high-level jobs and fails to discuss the potential drawbacks or other perspectives.
105
+ - Suggested Band Score (Task Achievement): 4.5
106
+
107
+ ## Coherence and Cohesion:
108
+ - The essay lacks clarity and fluidity in transitions between sentences and paragraphs.
109
+ - Connecting words and phrases are not effectively used to maintain a smooth progression of ideas.
110
+ - The logical sequence and arrangement of information is not well-organized.
111
+ - The essay jumps between different topics without providing clear connections between them.
112
+ - Suggested Band Score (Coherence and Cohesion): 3.5
113
+
114
+ ## Lexical Resource (Vocabulary):
115
+ - The essay demonstrates a limited range of vocabulary.
116
+ - There are several inaccuracies in vocabulary use, such as "relay their performance" and "ruins the operation."
117
+ - The vocabulary used is not always appropriate for the context and the level of formality required in academic writing.
118
+ - Suggested Band Score (Lexical Resource): 3.5
119
+
120
+ ## Grammatical Range and Accuracy:
121
+ - The essay exhibits a limited variety of sentence structures.
122
+ - There are several grammatical errors, including incorrect verb forms ("qualify" instead of "qualified") and sentence construction ("For example, if an applicant copies the cv to online and submits it to the company without checking if he is qualified then ruins the operation").
123
+ - The use of punctuation is inconsistent and sometimes incorrect.
124
+ - Suggested Band Score (Grammatical Range and Accuracy): 3.5
125
+
126
+ ## Overall Band Score:
127
+ - Considering the holistic performance across all criteria, the overall band score for this essay is 4.0.
128
+ - The essay fails to meet the requirements of the task adequately, lacks coherence and cohesion, and exhibits limited lexical resources and grammatical accuracy.
129
+
130
+ ## Feedback and Additional Comments:
131
+ - **Strengths:**
132
+ - Clear stance on the topic
133
+
134
+ - **Areas for Improvement:**
135
+ - Develop arguments with specific examples and evidence
136
+ - Improve transitions and logical flow of ideas
137
+ - Expand vocabulary range and use more precise and appropriate language
138
+ - Correct grammatical errors and improve sentence construction
139
+ - Pay attention to punctuation and ensure consistency
140
+
141
+ ## Strategies for Enhancement:
142
+ - Practice writing essays on various topics to improve vocabulary and sentence structure.
143
+ - Seek feedback from peers or a writing tutor to identify areas for improvement.
144
+ - Study grammar rules and practice exercises to enhance grammatical accuracy.
145
+ - Read widely to expose yourself to a wider range of vocabulary and writing styles.
146
+
147
+ ```
148
 
149
  Notes:
 
150
  - The text may have been obtained via OCR, which could result in some errors.
151
  - Disregard any text enclosed in <>. They separate different parts of the text.
152
  - If the task type is empty, try to identify the task type from the question. If you cannot determine the task type, mention that the task type is unclear.
 
154
  - If the specific question is not present in the task content, mention that the question does not exist in the task response.
155
 
156
  Task type: {task_type}
 
157
  Task number: {task_number}
 
158
  Question: {question}
 
159
  Task content: {content}
160
  '''
161