Method Load
Load(ModelAsset)
Converts a binary ModelAsset representation of a neural network to an object-oriented Model representation.
Declaration
public static Model Load(ModelAsset modelAsset)
Parameters
| Type | Name | Description |
|---|---|---|
| ModelAsset | modelAsset | The binary |
Returns
| Type | Description |
|---|---|
| Model | The loaded |
Load(string)
Loads a model that has been serialized to disk.
Declaration
public static Model Load(string path)
Parameters
| Type | Name | Description |
|---|---|---|
| string | path | The path of the binary serialized model |
Returns
| Type | Description |
|---|---|
| Model | The loaded |
Load(Stream)
Loads a serialized model from a stream.
Declaration
public static Model Load(Stream stream)
Parameters
| Type | Name | Description |
|---|---|---|
| Stream | stream | The |
Returns
| Type | Description |
|---|---|
| Model | The loaded |