{% extends "base.html" %} {% block title %}评分详情 - {{ exam.title }} - FlashExam{% endblock %} {% block content %}

评分详情 - {{ exam.title }}

主观题评分管理

总题目数

{{ total_questions }}

已AI评分

{{ ai_graded_count }}

已手动评分

{{ manual_graded_count }}

未评分

{{ ungraded_count }}

AI智能评分中心
选择评分方法
方法权重配置
30%
40%
30%

评分策略
提示:选择多个方法可以提高评分准确性。LLM方法较慢但理解能力强,嵌入方法速度快且效果好。
选择AI评分方法:
评分说明
推荐使用智能融合评分,能够综合多种算法的优势,确保评分的准确性和公平性。
题目评分详情
加载中...

正在加载题目数据...

{% for question_group in questions_grouped %}
题目 {{ loop.index }} {{ question_group[0].question_text|truncate(100) }}
类型: {{ question_group[0].question_type }} | 满分: {{ question_group[0].max_score }}分
{{ question_group | length }} 份答卷
{% for question in question_group %} {% endfor %}
学生 学生答案 评分状态 分数 操作
{{ question.student_name }}
ID: {{ question.student_id }}
{% if question.student_answer %} {{ question.student_answer|truncate(150) }} {% if question.student_answer|length > 150 %}
{% endif %} {% else %} 未作答 {% endif %}
{% if question.is_ai_graded %} AI已评分 {% elif question.is_manually_graded %} 手动已评分 {% else %} 未评分 {% endif %} {% if question.score is not none %} {{ "%.1f"|format(question.score) }} {% else %} 0.0 {% endif %} / {{ question.max_score }}
{% endfor %} {% endblock %} {% block scripts %} {% endblock %}