mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-25 22:26:24 +00:00
19 lines
No EOL
712 B
C++
19 lines
No EOL
712 B
C++
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
namespace Windows::AI::MachineLearning {
|
|
|
|
/* [uuid("3e4d4350-0b61-4517-aa6d-79d49bf164b4"), feature, contract, object, exclusiveto] */
|
|
MIDL_INTERFACE("3e4d4350-0b61-4517-aa6d-79d49bf164b4")
|
|
IMapFeatureValue : public ::IUnknown {
|
|
public:
|
|
/* [propget] */ virtual HRESULT STDMETHODCALLTYPE get_KeyKind(
|
|
/* [out, retval] */ winrt::Windows::AI::MachineLearning::TensorKind * kind) = 0;
|
|
|
|
/* [propget] */ virtual HRESULT STDMETHODCALLTYPE get_ValueDescriptor(
|
|
/* [out, retval] */ winrt::Windows::AI::MachineLearning::ILearningModelFeatureDescriptor * result) = 0;
|
|
};
|
|
|
|
} // namespace Windows::AI::MachineLearning
|