File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -207,12 +207,12 @@ def load_data(dataset):
207
207
f = gzip .open (dataset , 'rb' )
208
208
train_set , valid_set , test_set = cPickle .load (f )
209
209
f .close ()
210
- #train_set, valid_set, test_set format: tuple(input, target)
211
- #input is an numpy.ndarray of 2 dimensions (a matrix)
212
- #witch row's correspond to an example. target is a
213
- #numpy.ndarray of 1 dimensions (vector)) that have the same length as
214
- #the number of rows in the input. It should give the target
215
- #target to the example with the same index in the input.
210
+ # train_set, valid_set, test_set format: tuple(input, target)
211
+ # input is a numpy.ndarray of 2 dimensions (a matrix)
212
+ # where each row corresponds to an example. target is a
213
+ # numpy.ndarray of 1 dimension (vector) that has the same length as
214
+ # the number of rows in the input. It should give the target
215
+ # to the example with the same index in the input.
216
216
217
217
def shared_dataset (data_xy , borrow = True ):
218
218
""" Function that loads the dataset into shared variables
You can’t perform that action at this time.
0 commit comments