Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 818 Bytes

learningmodelpreview.md

File metadata and controls

31 lines (23 loc) · 818 Bytes
-api-id -api-type
T:Windows.AI.MachineLearning.Preview.LearningModelPreview
winrt class

Windows.AI.MachineLearning.Preview.LearningModelPreview

-description

Deprecated. Represents a machine learning model.

-remarks

Warning

This is a deprecated API. Please use the Windows.AI.MachineLearning namespace instead.

-see-also

-examples

public async Task LoadModel()
{
   var modelFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("model.onnx");
   LearningModelPreview model = await LearningModelPreview.LoadModelFromStorageFileAsync(modelFile);
   
   ...
}