MCPcopy Index your code
hub / github.com/lisa-lab/DeepLearningTutorials / save

Method save

code/rnnslu.py:240–243  ·  view source on GitHub ↗
(self, folder)

Source from the content-addressed store, hash-verified

238 self.normalize()
239
240 def save(self, folder):
241 for param in self.params:
242 numpy.save(os.path.join(folder,
243 param.name + '.npy'), param.get_value())
244
245 def load(self, folder):
246 for param in self.params:

Callers 4

mainFunction · 0.95
test_rbmFunction · 0.80
test_dAFunction · 0.80
test_cAFunction · 0.80

Calls

no outgoing calls

Tested by 3

test_rbmFunction · 0.64
test_dAFunction · 0.64
test_cAFunction · 0.64