Load the model into the extension. Allows more complex models than can easily handled via pickling. Parameters ---------- folder : str local folder to load model
(self,folder)
| 169 | pass |
| 170 | |
| 171 | def load(self,folder): |
| 172 | """ |
| 173 | Load the model into the extension. Allows more complex models than can easily handled via pickling. |
| 174 | |
| 175 | Parameters |
| 176 | ---------- |
| 177 | |
| 178 | folder : str |
| 179 | local folder to load model |
| 180 | """ |
| 181 | return self |
| 182 | |
| 183 | |
| 184 | class ExtensionWrapper(object): |
no outgoing calls
no test coverage detected