-
Notifications
You must be signed in to change notification settings - Fork 0
/
polinomial.py
122 lines (71 loc) · 3.67 KB
/
polinomial.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
import pandas as pd
from utili import *
from norm import *
#------------------------------- IMPORT CSV + MODIFICHE DATASET -------------------------------#
#Importiamo il csv e lo trasformiamo in una matrice
data = pd.read_csv("wine.csv", sep = ",", header=None)
data = data.as_matrix()
#Creiamo le matrici x e y
X = data[:, 0:data.shape[1]-1]
y = data[:, -1]
#Genero la colonna della nuova feature da inserire
a = data[ : , 0] #Acid
b = data[ : , 1] #pH^2
c = a * b #Acid*pH
#Aggiungo la colonna c alle feature
X = np.column_stack((X, c))
#----------------------------------------------------------------------------------------------#
#------------------------------------ NORMALIZAZZIONE FEATURE ---------------------------------#
#------------------------------------- ZSCORE -----------------------------------#
mu, sigma = muSigma(X)
X = zScore(X, mu, sigma)
#--------------------------------------------------------------------------------#
#------------------------------------ MINMAX ------------------------------------#
# min, diff, max = minmax(X)
# X = Min_Max(X, min, diff)
#--------------------------------------------------------------------------------#
#-------------------------------- FEATURE SCALING -------------------------------#
# min, diff, max = minmax(X)
# X = Feat_Scaling(X, max)
#--------------------------------------------------------------------------------#
#----------------------------------------------------------------------------------------------#
#Aggiungiamo x0 alle x
X = np.column_stack((np.ones(data.shape[0]), X))
#Genero theta
theta = np.zeros(X.shape[1])
#Parametri
alpha = 0.02
num_iters = 100000
#Visualizzazione del costo allo stato iniziale
print("Cost at iteration 0:", Cost(X, y, theta))
#Effettuo il Gradient Descent
#-------------------------------------------- BATCH -------------------------------------------#
theta, history = gradientDescent(X, y, theta, alpha, num_iters)
#----------------------------------------------------------------------------------------------#
#----------------------------------------- STOCHASTIC -----------------------------------------#
#theta, history = stochastic_grad_des(X, y, theta, alpha, num_iters)
#----------------------------------------------------------------------------------------------#
#----------------------------------------- MINI BATCH -----------------------------------------#
#Numero di minibatch da controllare
# b = 799
# theta, history = mini_batch(X, y, theta, alpha, num_iters, b)
#----------------------------------------------------------------------------------------------#
plotLearning(history)
#Inserisco la nuova tupla da predire
new_tuple = [6.0, 0.31, 0.47, 3.6, 0.067, 18.0, 42.0, 0.99549, 3.39, 0.66, 11.0, 1.86] #inserire la tupla da predire
#Normalizzo la tupla da predire
#-------------------------------------- predizione zScore -------------------------------------#
new_tuple = zScore(new_tuple, mu, sigma)
#----------------------------------------------------------------------------------------------#
#-------------------------------------- predizione minmax -------------------------------------#
# new_tuple = np.asarray(new_tuple)
# new_tuple = Min_Max(new_tuple, min, diff)
#----------------------------------------------------------------------------------------------#
#----------------------------------- predizione feat scaling ----------------------------------#
# new_tuple = np.asarray(new_tuple)
# new_tuple = Feat_Scaling(new_tuple, max)
#----------------------------------------------------------------------------------------------#
#Aggiungo x0 alla tupla
new_tuple = np.insert(new_tuple, 0, 1)
#Effettuo la predizione
print(predict(new_tuple, theta))