/
pash1ka
/
question-difficulty-classifier
Обзор
Документация
Войти
/
pash1ka
/
question-difficulty-classifier
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/features.py
11 строк
348 B
Blinov Pavel
Final project: Question Difficulty Classifier 15/15 ready
07 дек 2025, 16:09
07 дек 2025, 16:09
c285405
Код
Авторство
О чём код?
import textstat def extract_features(question_text: str, pct_correct: float, avg_time_sec: float): return { "length": len(question_text), "word_count": len(question_text.split()), "fk_grade": textstat.flesch_kincaid_grade(question_text), "pct_correct": pct_correct, "avg_time_sec": avg_time_sec, }