Save the extension model. Allows more fine grained control over model state saving than pickling would allow. The method should save objects that only can't be pickled. Parameters ---------- folder : str local folder to save model
(self,folder)
| 157 | |
| 158 | |
| 159 | def save(self,folder): |
| 160 | """ |
| 161 | Save the extension model. Allows more fine grained control over model state saving than pickling would allow. The method should save objects that only can't be pickled. |
| 162 | |
| 163 | Parameters |
| 164 | ---------- |
| 165 | |
| 166 | folder : str |
| 167 | local folder to save model |
| 168 | """ |
| 169 | pass |
| 170 | |
| 171 | def load(self,folder): |
| 172 | """ |
no outgoing calls
no test coverage detected