LearningModelPreview Classe
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Action déconseillée. Représente un modèle Machine Learning.
public ref class LearningModelPreview sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, 65536)]
class LearningModelPreview final
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, 65536)]
/// [Windows.Foundation.Metadata.Deprecated("Use LearningModel instead of LearningModelPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
class LearningModelPreview final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract), 65536)]
public sealed class LearningModelPreview
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract), 65536)]
[Windows.Foundation.Metadata.Deprecated("Use LearningModel instead of LearningModelPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
public sealed class LearningModelPreview
Public NotInheritable Class LearningModelPreview
- Héritage
- Attributs
Configuration requise pour Windows
Famille d’appareils |
Windows 10, version 1803 (introduit dans 10.0.17134.0)
|
API contract |
Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract (introduit dans v1.0)
|
Exemples
public async Task LoadModel()
{
var modelFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("model.onnx");
LearningModelPreview model = await LearningModelPreview.LoadModelFromStorageFileAsync(modelFile);
...
}
Remarques
Avertissement
Il s’agit d’une API déconseillée. Utilisez plutôt l’espace de noms Windows.AI.MachineLearning .
Propriétés
Description |
Action déconseillée. Obtient les métadonnées descriptives pour le modèle Machine Learning entraîné. |
InferencingOptions |
Action déconseillée. Obtient ou définit les options d’inférence pour l’évaluation d’un modèle. |
Méthodes
EvaluateAsync(LearningModelBindingPreview, String) |
Action déconseillée. Évaluez de manière asynchrone le modèle Machine Learning à l’aide de la valeur de fonctionnalité déjà liée dans la liaison. |
EvaluateFeaturesAsync(IMap<String,Object>, String) |
Action déconseillée. Évalue de façon asynchrone les instances de variables de noms en tant qu’entrées et sorties pour le modèle. |
LoadModelFromStorageFileAsync(IStorageFile) |
Action déconseillée. Charge de façon asynchrone un modèle à partir du stockage de fichiers. |
LoadModelFromStreamAsync(IRandomAccessStreamReference) |
Action déconseillée. Charge de façon asynchrone un modèle à partir d’un flux fourni. |