* Save model artifacts. This IO handler cannot support writing to the * packaged bundle at runtime and is exclusively for loading a model * that is already packages with the app.
()
| 37 | * that is already packages with the app. |
| 38 | */ |
| 39 | async save(): Promise<io.SaveResult> { |
| 40 | throw new Error( |
| 41 | 'Bundle resource IO handler does not support saving. ' + |
| 42 | 'Consider using asyncStorageIO instead'); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Load a model from local storage. |
nothing calls this directly
no outgoing calls
no test coverage detected