-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
48 lines (38 loc) · 1.33 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import numpy as np
import pandas as pd
import sklearn as sk
from sklearn import linear_model
from sklearn.utils import shuffle
import matplotlib.pyplot as pyplot
import pickle
from matplotlib import style
data = pd.read_csv("student-mat.csv", sep=";")
data = data[["G1", "G2", "G3", "studytime", "failures", "absences", "health", "freetime"]]
predict = "G3"
x = np.array(data.drop([predict], 1))
y = np.array(data[predict])
x_train, x_test, y_train, y_test = sk.model_selection.train_test_split(x, y, test_size=0.1)
best_score = 0
''''
for _ in range(30):
x_train, x_test, y_train, y_test = sk.model_selection.train_test_split(x, y, test_size=0.1)
linear = linear_model.LinearRegression()
linear.fit(x_train, y_train)
accuracy = linear.score(x_test, y_test)
print(accuracy)
if accuracy > best_score:
best_score = accuracy
with open("studentmodel.pickle", "wb") as f:
pickle.dump(linear, f)'''
pickle_in = open("studentmodel.pickle", "rb")
linear = pickle.load(pickle_in)
predictions = linear.predict(x_test)
for i in range(len(predictions)):
print(predictions[i], x_test[i], y_test[i])
p = "G1"
style.use("ggplot")
pyplot.scatter(data[p], data["G3"])
pyplot.xlabel(p)
pyplot.ylabel("(Final Grade)")
pyplot.title("Student Grade Predictor")
pyplot.show()