load
core.IO.load(
filename,
populations=True,
projections=True,
pickle_encoding=None,
net_id=0,
)Loads a saved state of the network.
Warning: Matlab data can not be loaded.
Example:
ann.load('results/network.npz')Parameters
| Name | Type | Description | Default |
|---|---|---|---|
| filename | str | the filename with relative or absolute path. | required |
| populations | bool | if True, population data will be loaded (by default True) | True |
| projections | bool | if True, projection data will be loaded (by default True) | True |
| pickle_encoding | str | optional parameter provided to the pickle.load() method. If set to None the default is used. | None |