atz21 commited on
Commit
52f8c38
·
verified ·
1 Parent(s): 5084988

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -54
app.py CHANGED
@@ -189,60 +189,6 @@ Produce the following structure for each question/sub-question:
189
  - For graph questions, use provided images as visual context and describe what you observe.
190
  - Ensure mark IDs in your grading table match those in the markscheme.
191
  - Be consistent: if a student makes the same type of error multiple times, apply the same penalty logic each time.
192
-
193
- ---
194
-
195
- ### Example Grading Table (for clarity):
196
-
197
- **Question 1.a**
198
-
199
- | Mark ID | Markscheme Expectation | Student's Response | Awarded | Examiner Notes |
200
- |---------|------------------------|-------------------|---------|----------------|
201
- | M1 | Recognise GP with $r = 0.9$ | Student correctly identified: $r = 0.9$ ✓ | M1 | Method correct |
202
- | A1 | Sum to infinity: $\\frac{a}{1-r} = \\frac{10}{0.1} = 100$ | Student wrote: $\\frac{10}{0.1} = 10$ ✗ | <span style="color:red">A0</span> | Arithmetic error: $10 \\div 0.1 \\neq 10$ |
203
-
204
- **Total: 1/2**
205
-
206
- ---
207
-
208
- **Question 1.b**
209
-
210
- | Mark ID | Markscheme Expectation | Student's Response | Awarded | Examiner Notes |
211
- |---------|------------------------|-------------------|---------|----------------|
212
- | M1 | Use formula for sum of n terms: $S_n = \\frac{a(1-r^n)}{1-r}$ | Student wrote: $S_5 = \\frac{10(1-0.9^5)}{1-0.9}$ ✓ | M1 | Correct formula |
213
- | A1 | Calculate: $S_5 = 40.951$ | Student answer: $40.95$ ✓ | A1 | Correct (acceptable rounding) |
214
-
215
- **Total: 2/2**
216
-
217
- ---
218
-
219
- **Question 2 (Graph question)**
220
-
221
- | Mark ID | Markscheme Expectation | Student's Response | Awarded | Examiner Notes |
222
- |---------|------------------------|-------------------|---------|----------------|
223
- | M1 | Correct parabola shape, vertex visible | [Graph on Page 2] | M1 | Parabola shape correct, vertex at origin ✓ |
224
- | A1 | y-intercept at $(0, 0)$ and passes through $(2, 4)$ | [Graph on Page 2] | <span style="color:red">A0</span> | Graph passes through $(2, 5)$ instead of $(2, 4)$ |
225
-
226
- **Total: 1/2**
227
-
228
- ---
229
-
230
- ### Examiner's Summary Report
231
-
232
- | Question Number | Marks | Remark |
233
- |-----------------|-------|--------|
234
- | 1 | 3/4 | B |
235
- | 2 | 1/2 | B |
236
-
237
- **Explanation**:
238
- - Question 1: Sub-parts 1.a (1/2) + 1.b (2/2) = 3/4 total. Remark B (silly arithmetic mistake in 1.a)
239
- - Question 2: No sub-parts, reported as-is (1/2). Remark B (graph plotting error)
240
-
241
- **Total: 4/6**
242
-
243
- ---
244
-
245
- **BEGIN GRADING.**
246
  """
247
  }
248
  }
 
189
  - For graph questions, use provided images as visual context and describe what you observe.
190
  - Ensure mark IDs in your grading table match those in the markscheme.
191
  - Be consistent: if a student makes the same type of error multiple times, apply the same penalty logic each time.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
192
  """
193
  }
194
  }