-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmu-variant-machine-learning.py
More file actions
144 lines (117 loc) · 4.22 KB
/
mu-variant-machine-learning.py
File metadata and controls
144 lines (117 loc) · 4.22 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#libraries of the loading
from sklearn.ensemble import *
from sklearn.model_selection import *
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.metrics import *
#datasets loading...
mu_variant_data = pd.read_csv('mu-variant-data.csv')
#change function..
def number_gender_change(x):
match x:
case 'Male':
return 0
case 'Female':
return 1
case _:
return 2
#change of the str to int.
mu_variant_data['Gender_Change'] = mu_variant_data['Gender'].apply(number_gender_change)
#creating of fetures
coverage_X = mu_variant_data.loc[:,['S:N501Y','S:E484K','S:R346K','S:P681H','Coverage']].values
#creating of class,target or label :)
gender_y = mu_variant_data.loc[:,['Gender_Change']].values
#fetaures print
#print(gender_y)
#try :)
# *******CLASSIFICATION IS THE MU VARIANT*******
# we create the Train and Test datasets.. (parameters of the suitable)
coverage_X_train, coverage_X_test, gender_y_train, gender_y_test = train_test_split(
coverage_X,
gender_y,
test_size=0.22,
stratify=None,
shuffle=True,
random_state=64
)
# we create of the our model 8Classifier)
model_mu_variant = BaggingClassifier(
base_estimator=None,
random_state=46,
n_estimators=2,
bootstrap=True,
max_features=1.0,
n_jobs=-1,
warm_start=False
)
# model is fitting with Train datasets.
model_mu_variant.fit(coverage_X_train, gender_y_train)
# Creating the Prediction equation
prediction = model_mu_variant.predict(coverage_X_test)
# Creating of Accuracy score, F1 Score, Recall Score, Precision Score and Confusion Matrix :)
print(f"Accuracy score: {accuracy_score(gender_y_test, prediction)}")
print(f"F1 score: {f1_score(gender_y_test, prediction)}")
print(f"Recall score: {recall_score(gender_y_test, prediction)}")
print(f"Precision score: {precision_score(gender_y_test, prediction)}")
# print(f"Confusion Matrix: {confusion_matrix(gender_y_test, prediction)}")
# *******PREDICTION IS THE MU VARIANT*******
X_train, X_test, y_train, y_test = train_test_split(
coverage_X,
gender_y,
test_size=0.05,
stratify=None,
shuffle=True,
random_state=265
)
# creating of our predicting model
model_mu_variant_predict = BaggingRegressor(
base_estimator=None,
random_state=149,
n_estimators=1,
bootstrap=True,
max_features=1.0,
n_jobs=-1,
warm_start=True,
bootstrap_features=True
)
# our model is fitting..
model_mu_variant_predict.fit(X_train, y_train)
# our model is predicting..
a = model_mu_variant_predict.predict(X_test)
predi = model_mu_variant_predict.predict([[1, 1, 0, 1, 2]])
for i in predi:
match i:
case i == [1.]:
print("Congrats! Prediction Gender is the Female!")
case i == [0.]:
print("Congrats! Prediction Gender is the Male!")
case _:
print("Sorry! Prediction Gender is the Unknown!")
# our prediction software is the accuracy score :)
print(f"Prediction Model Accuracy Score: {r2_score(y_test, a)} ")
feature_names = mu_variant_data.loc[:,['S:N501Y','S:E484K','S:R346K','S:P681H','Coverage']].columns
from sklearn.tree import *
def save_decision_trees_as_dot(model_mu_variant, iteration, feature_name):
#file_name = open("emirhan_mu_variant_classification" + str(iteration) + ".dot", 'w')
dot_data = export_graphviz(
model_mu_variant,
#out_file=file_name,
feature_names=feature_name,
class_names=['Male','Female','Unknown'],
rounded=True,
proportion=False,
precision=2,
filled=True
)
#file_name.close()
print("Classification {} saved as dot file".format(iteration + 1))
# Save of the .dot loop..
#for i in range(len(model_mu_variant.estimators_)):
#save_decision_trees_as_dot(model_mu_variant.estimators_[i], i, feature_names)
#print(i)
plt.scatter(mu_variant_data['Coverage'],mu_variant_data['Gender'])
plt.legend(["Coverage\nGender"])
plt.xlabel("Coverage")
plt.ylabel("Gender")
plt.title("Covid-19 Mu Variant [B.1.621] -- Gender/Coverage")
plt.show()