-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmira.py
137 lines (107 loc) · 4.62 KB
/
mira.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
# mira.py
# -------
# Licensing Information: Please do not distribute or publish solutions to this
# project. You are free to use and extend these projects for educational
# purposes. The Pacman AI projects were developed at UC Berkeley, primarily by
# John DeNero ([email protected]) and Dan Klein ([email protected]).
# For more info, see http://inst.eecs.berkeley.edu/~cs188/sp09/pacman.html
# Mira implementation
import util
import datetime
PRINT = True
class MiraClassifier:
"""
Mira classifier.
Note that the variable 'datum' in this code refers to a counter of features
(not to a raw samples.Datum).
"""
def __init__( self, legalLabels, max_iterations):
self.legalLabels = legalLabels
self.type = "mira"
self.automaticTuning = False
self.C = 0.001
self.legalLabels = legalLabels
self.max_iterations = max_iterations
self.initializeWeightsToZero()
def initializeWeightsToZero(self):
"Resets the weights of each label to zero vectors"
self.weights = {}
for label in self.legalLabels:
self.weights[label] = util.Counter() # this is the data-structure you should use
def train(self, trainingData, trainingLabels, validationData, validationLabels):
"Outside shell to call your method. Do not modify this method."
self.features = trainingData[0].keys() # this could be useful for your code later...
if (self.automaticTuning):
Cgrid = [0.002, 0.004, 0.008]
else:
Cgrid = [self.C]
return self.trainAndTune(trainingData, trainingLabels, validationData, validationLabels, Cgrid)
def trainAndTune(self, trainingData, trainingLabels, validationData, validationLabels, Cgrid):
"""
This method sets self.weights using MIRA. Train the classifier for each value of C in Cgrid,
then store the weights that give the best accuracy on the validationData.
Use the provided self.weights[label] data structure so that
the classify method works correctly. Also, recall that a
datum is a counter from features to values for those features
representing a vector of values.
"""
"*** YOUR CODE HERE ***"
a = datetime.datetime.now()
bestWeights = util.Counter()
highest = 0
#iterate over Cs
for i in range(len(Cgrid)):
for iteration in range(self.max_iterations):
for j in range(len(trainingData)):
# calculate label for training data / make a prediction
labelScores = util.Counter()
for k in self.legalLabels:
labelScores[k] = self.weights[k] * trainingData[j]
prediction = labelScores.argMax()
# calculate tau
if(prediction != trainingLabels[j]):
tau = min(Cgrid[i], (((self.weights[prediction] - self.weights[trainingLabels[j]]) * trainingData[j]) + 1.0) / ((trainingData[j] * trainingData[j]) * 2.0))
#print tau
#print trainingData[j]
#print self.weights[trainingLabels[j]]
newDatum = trainingData[j].copy()
for x in newDatum.keys():
newDatum[x] = newDatum[x] * tau
self.weights[trainingLabels[j]] = self.weights[trainingLabels[j]] + (newDatum)
self.weights[prediction] = self.weights[prediction] - (newDatum)
# Start classification:
correct_predictions = 0
predictions = self.classify(validationData)
for v in range(0, len(validationData)):
if validationLabels[v] == predictions[v]:
correct_predictions = correct_predictions + 1
percentage = (float(correct_predictions) / len(validationLabels)) * 100
print "c = ", Cgrid[i], " accuracy is: ", percentage, "%"
if percentage > highest:
highest = percentage
bestWeights = self.weights.copy()
print highest
self.weights = bestWeights
b = datetime.datetime.now()
print "*** Time Taken *** ", (b-a)
def classify(self, data ):
"""
Classifies each datum as the label that most closely matches the prototype vector
for that label. See the project description for details.
Recall that a datum is a util.counter...
"""
guesses = []
for datum in data:
vectors = util.Counter()
for l in self.legalLabels:
vectors[l] = self.weights[l] * datum
guesses.append(vectors.argMax())
return guesses
def findHighOddsFeatures(self, label1, label2):
"""
Returns a list of the 100 features with the greatest difference in feature values
w_label1 - w_label2
"""
featuresOdds = []
"*** YOUR CODE HERE ***"
return featuresOdds