-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject2.py.py
191 lines (124 loc) · 5.85 KB
/
project2.py.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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/usr/bin/env python
# coding: utf-8
# In this exercise, we want to design a category with the help of our knowledge of univariate normal distribution
#
# Use the scikitlearn library to implement the models
#
# https://scikit-learn.org/stable/
# # Read data
#
# First, we read the data from the library and then divide the data into two categories, training and testing
# In[1]:
import numpy as np
from sklearn import datasets
from sklearn.metrics import accuracy_score
def print_accuracy(y_prd, y_true, name=''):
acc = accuracy_score(y_prd, y_true, normalize=True) * 100
print(name + 'Accuracy = {0}%'.format(round(acc, 2)))
iris = datasets.load_iris()
X = iris.data
y = iris.target
# store the feature matrix (X) and response vector (y)
X = iris.data
y = iris.target
print("our dataset has " + str(X.shape[1]) + " features. for more information about data surf the web")
# splitting X and y into training and testing sets
#you can change the test size, fit model with more or less data and see results
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.4, random_state=1)
# ### q1) print the number of train and test data and number of classes
# In[2]:
print("the number of train data is : ", len(y_train) )
print("the number of test data is : ", len(y_test) )
print("there is " + str(len(np.unique(y_train))) + " different classes in the dataset")
# # Training a model assuming Gaussian distribution of data
#
# Suppose we know that our data follows a Gaussian distribution and also that the features are independent of each other. Please teach a model for classifying classes with the help of the assumptions of the problem and without the help of ready-made models. Be careful that you should not use ready-made codes and you are only allowed to use ready-made functions for basic formulas such as average or variance.
# In[3]:
# training the model on training set
# write your code here :
train0, train1, train2 = X_train[y_train==0], X_train[y_train==1], X_train[y_train==2]
mu = np.vstack((train0.mean(axis=0), train1.mean(axis=0), train2.mean(axis=0)))
sigma = np.sqrt(np.vstack((train0.var(axis=0), train1.var(axis=0), train2.var(axis=0))))
P_C = len(train0) / len(y_train), len(train1) / len(y_train), len(train2) / len(y_train)
# اکنون با کمک داده های آزمایشی دقت مدل خود را بسنجید
# In[4]:
#write your code here :
def naive_bayes_classifier(X, mu, sigma, pc):
N, K = X.shape[0], mu.shape[0]
y = np.zeros((N, K))
for c in range(K):
y[:, c] = -np.asarray([sum(np.power(np.true_divide(np.subtract(x, mu[c]), sigma[c]), 2)) for x in X],
dtype='float32')/2 + np.log(pc[c])
return np.argmax(y, axis=1)
print_accuracy(naive_bayes_classifier(X_train, mu, sigma, P_C), y_train, 'training data ')
print_accuracy(naive_bayes_classifier(X_test, mu, sigma, P_C), y_test, 'test data ')
# # Training the model without knowing the data distribution
#
# Classify the data with the help of SVM classifier as well as a simple neural network and compare the accuracy with the previous section
# In[5]:
from sklearn import svm
#train svm model
#write yor code here :
for degree in (4, 9):
clf = svm.SVC(kernel='poly', degree=degree)
clf.fit(X_train, y_train)
y = clf.predict(X_train)
print('kernel: Polynomial with degree={0}'.format(degree))
print_accuracy(clf.predict(X_train), y_train, 'training data ')
print_accuracy(clf.predict(X_test), y_test, 'test data ')
print()
# In[6]:
from sklearn.neural_network import MLPClassifier
#use two hidden layers
#train multi layer perceptron
#write yor code here :
clf = MLPClassifier(hidden_layer_sizes=(100, 100), max_iter=1000)
clf.fit(X_train, y_train)
y = clf.predict(X_train)
print_accuracy(clf.predict(X_train), y_train, 'training data ')
print_accuracy(clf.predict(X_test), y_test, 'test data ')
# # Read new data
# In[7]:
wine = datasets.load_wine()
# store the feature matrix (X) and response vector (y)
X = wine.data
y = wine.target
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.4, random_state=1)
# # Training a model assuming Gaussian distribution of data
#
# Suppose we know that our data follows a Gaussian distribution. With the help of ready-made libraries, train a model for classifying classes. You can also use ready-made libraries for this part, and there is no need to implement.
# In[8]:
from sklearn.naive_bayes import GaussianNB
# training the model on training set
# write your code here :
clf = GaussianNB()
clf.fit(X_train, y_train)
# Now measure the accuracy of your model with the help of test data
# In[9]:
#write your code here :
print_accuracy(clf.predict(X_train), y_train, 'training data ')
print_accuracy(clf.predict(X_test), y_test, 'test data ')
# # Training the model without knowing the data distribution
#
# Classify the data with the help of SVM classifier as well as a simple neural network and compare the accuracy with the previous section
# In[10]:
#train svm model
#write yor code here :
from sklearn import svm
clf = svm.SVC(kernel='rbf', C=2.0)
clf.fit(X_train, y_train)
y = clf.predict(X_train)
print('kernel: RBF')
print_accuracy(clf.predict(X_train), y_train, 'training data ')
print_accuracy(clf.predict(X_test), y_test, 'test data ')
# In[11]:
#train multi layer perceptron
#write yor code here
from sklearn.neural_network import MLPClassifier
clf = MLPClassifier(hidden_layer_sizes=(100, 100), max_iter=1000)
clf.fit(X_train, y_train)
y = clf.predict(X_train)
print_accuracy(clf.predict(X_train), y_train, 'training data ')
print_accuracy(clf.predict(X_test), y_test, 'test data ')
# In[ ]: