LearningModelPreview クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
非推奨になりました。 機械学習モデルを表します。
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
- 継承
- 属性
Windows の要件
デバイス ファミリ |
Windows 10, version 1803 (10.0.17134.0 で導入)
|
API contract |
Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract (v1.0 で導入)
|
例
public async Task LoadModel()
{
var modelFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("model.onnx");
LearningModelPreview model = await LearningModelPreview.LoadModelFromStorageFileAsync(modelFile);
...
}
注釈
警告
これは非推奨の API です。 代わりに、 Windows.AI.MachineLearning 名前空間を 使用してください。
プロパティ
Description |
非推奨になりました。 トレーニング済みの機械学習モデルの記述メタデータを取得します。 |
InferencingOptions |
非推奨になりました。 モデルの評価の推論オプションを取得または設定します。 |
メソッド
EvaluateAsync(LearningModelBindingPreview, String) |
非推奨になりました。 バインドで既にバインドされている特徴値を使用して、機械学習モデルを非同期的に評価 します。 |
EvaluateFeaturesAsync(IMap<String,Object>, String) |
非推奨になりました。 名前の変数名をモデルの入力と出力として非同期的に評価します。 |
LoadModelFromStorageFileAsync(IStorageFile) |
非推奨になりました。 ファイル ストレージからモデルを非同期に読み込みます。 |
LoadModelFromStreamAsync(IRandomAccessStreamReference) |
非推奨になりました。 指定されたストリームからモデルを非同期に読み込みます。 |