-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneric.py
212 lines (165 loc) · 7.19 KB
/
generic.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
# Copyright 2011 Hugo Larochelle. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification, are
# permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this list of
# conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
# of conditions and the following disclaimer in the documentation and/or other materials
# provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY Hugo Larochelle ``AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Hugo Larochelle OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# The views and conclusions contained in the software and documentation are those of the
# authors and should not be interpreted as representing official policies, either expressed
# or implied, of Hugo Larochelle.
"""
The ``learners.generic`` module contains Learners that are not designed for a specific
type of problem or data. They mostly serve as interfaces to derive new
Learners.
This module contains the following classes:
* Learner: Root class for all learning algorithms.
* OnlineLearner: Interface for Learners that can be traiend "online".
"""
import itertools
class Learner:
"""
Root class or interface for a learning algorithm.
All Learner objects inherit from this class. It is meant to
standardize the behavior of all learning algorithms.
"""
# def __init__():
def train(self, trainset):
"""
Runs the learning algorithm on ``trainset``
"""
raise NotImplementedError(
"Subclass should have implemented this method.")
def forget(self):
"""
Resets the Learner to its original state.
"""
raise NotImplementedError(
"Subclass should have implemented this method.")
def use(self, dataset):
"""
Computes and returns the output of the Learner for
``dataset``. The method should return an iterator over these
outputs.
"""
raise NotImplementedError(
"Subclass should have implemented this method.")
def test(self, dataset):
"""
Computes and returns the outputs of the Learner as well as the cost of
those outputs for ``dataset``. The method should return a pair of two iterators, the first
being over the outputs and the second over the costs.
"""
raise NotImplementedError(
"Subclass should have implemented this method.")
class OnlineLearner(Learner):
"""
Class (interface) for Learners that can be trained "online".
This class interface makes it easier to construct a learner. All
that must be defined are four following methods:
* ``initialize_learner(self,metadata)``
* ``update_learner(self,example)``
* ``use_learner(self,example)``
* ``cost(self,output,example)``
Method ``initialize_learner()`` simply initializes
the learner. The training set's 'metadata' is also available.
Method ``update_learner()`` updates the learner's parameters
using the given 'example'.
Method ``use_learner()`` should return the output
for the given 'example'. The output should be a sequence
(even if it has just one element in it), to allow
for multiple outputs. Make sure not to return an object
that is referenced internally and is still
being used by the class object.
Method ``cost()`` should return the cost associated
to some 'output' for the given 'example'. The returned
cost should be a sequence (even if it has just one
element in it), to allow for multiple costs.
Option ``n_stages`` specifies how many iterations over the
training set is done at every call of ``train()``.
All other hyper-parameters for the learner supplied
through the constructor will be assigned as attributes
to the object, and hence will be accessible
by all methods.
Example of methods for a linear perceptron. ::
import numpy as np
import mlpython
class Perceptron(mlpython.learners.OnlineLearner):
def initialize_learner(self,metadata):
self.w = np.zeros((metadata['input_size']))
self.b = 0.
def update_learner(self,example):
input = example[0]
target = 2*example[1]-1 # Targets are 0/1
output = np.dot(self.w,input)+self.b
if np.sign(output) != target:
self.w += self.lr * target * input
self.b += self.lr * target
def use_learner(self,example):
return [np.sign(np.dot(self.w,example[0])+self.b)]
def cost(self,output,example):
return [int(output != 2*example[1]-1)]
When creating an instance, must provide the
value of the hyper-parameter lr: ::
perceptron = Perceptron(1,lr=0.01)
Alternatively, one could override the constructor to
specify some default hyper-parameters: ::
class Perceptron(mlpython.learners.OnlineLearner):
def __init__(self, n_stages,
lr = 0.01):
self.n_stages = n_stages
self.stage = 0
self.lr = lr
"""
def __init__(self, n_stages, **kw):
self.n_stages = n_stages
self.stage = 0
for k, v in kw.items():
setattr(self, k, v)
def train(self, trainset):
if self.stage == 0:
self.initialize_learner(trainset.metadata)
for it in range(self.stage, self.n_stages):
for example in trainset:
self.update_learner(example)
self.stage = self.n_stages
def forget(self):
self.stage = 0
def use(self, dataset):
outputs = []
for example in dataset:
outputs += [self.use_learner(example)]
return outputs
def test(self, dataset):
outputs = self.use(dataset)
costs = []
for example, output in zip(dataset, outputs):
costs += [self.cost(output, example)]
return outputs, costs
def initialize_learner(self, metadata):
raise NotImplementedError(
"Subclass should have implemented this method.")
def update_learner(self, example):
raise NotImplementedError(
"Subclass should have implemented this method.")
def use_learner(self, example):
raise NotImplementedError(
"Subclass should have implemented this method.")
def cost(self, output, example):
raise NotImplementedError(
"Subclass should have implemented this method.")