реади1

This commit is contained in:
DmitriyAntonov 2023-10-08 15:40:22 +04:00
parent d4e65b3373
commit 2acd2f9b5b
2 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,6 @@ Predict students' dropout and academic success (отсев студентов),
'Curricular units 2nd sem (approved)' - (Учебные блоки 2-го семестра (утверждены))
'Curricular units 2nd sem (grade)' - (Учебные блоки 2-го семестра (класс))
'Tuition fees up to date' - (Стоимость обучения")
'Curricular units 2nd sem (grade)' - (Учебные блоки 2-го семестра (класс))
# Результаты
Точность регрессии для вышеперечисленных признаков составили 0.6256 (alpha = 0.01)

View File

@ -8,9 +8,10 @@ from sklearn.model_selection import train_test_split
# загрузка данных
data = pd.read_csv('dataset.csv')
X = (data[
['Curricular units 2nd sem (approved)', 'Curricular units 2nd sem (grade)',
['Curricular units 2nd sem (approved)',
'Tuition fees up to date',
'Curricular units 2nd sem (grade)']])
'Curricular units 2nd sem (grade)']]
)
y = data['Target']
# тренировка модели