https://www.emgu.com
Initialize the graph by downloading the model from the Internet
Namespace:
Emgu.TF.Lite.Models
Assembly:
Emgu.TF.Lite.Models (in Emgu.TF.Lite.Models.dll) Version: 2.19.0.1709+574f567263f3c76bb77304b9eeb79ab6660ba101
Syntaxpublic Task Init(
DownloadableFile modelFile = null,
DownloadableFile labelFile = null
)
Public Function Init (
Optional modelFile As DownloadableFile = Nothing,
Optional labelFile As DownloadableFile = Nothing
) As Task
public:
Task^ Init(
DownloadableFile^ modelFile = nullptr,
DownloadableFile^ labelFile = nullptr
)
member Init :
?modelFile : DownloadableFile *
?labelFile : DownloadableFile
(* Defaults:
let _modelFile = defaultArg modelFile null
let _labelFile = defaultArg labelFile null
*)
-> Task
Parameters
- modelFile (Optional)
- Type: Emgu.ModelsDownloadableFile
The tflite flatbuffer model files - labelFile (Optional)
- Type: Emgu.ModelsDownloadableFile
Text file that contains the labels
Return Value
Type:
Task[Missing <returns> documentation for "M:Emgu.TF.Lite.Models.Inception.Init(Emgu.Models.DownloadableFile,Emgu.Models.DownloadableFile)"]
See Also