Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
main
Function · 0.95
test_rbm
Function · 0.80
test_dA
Function · 0.80
test_cA
Function · 0.80
Calls
no outgoing calls
Tested by
3
test_rbm
Function · 0.64
test_dA
Function · 0.64
test_cA
Function · 0.64