// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #pragma once #include "pch.h" namespace Windows::AI::MachineLearning { struct FeatureDescriptorFactory { FeatureDescriptorFactory( const std::unordered_map& model_metadata); wfc::IVector CreateDescriptorsFromValueInfoProtos( const std::vector& value_info_protos); private: const std::unordered_map& metadata_; }; } // namespace Windows::AI::MachineLearning