Amazon.MachineLearning.AmazonMachineLearningClient.GetMLModelAsync C# (CSharp) Метод

GetMLModelAsync() публичный Метод

Returns an MLModel that includes detailed metadata, data source information, and the current status of the MLModel.

GetMLModel provides results in normal or verbose format.

/// An error on the server occurred when trying to process a request. /// /// An error on the client occurred. Typically, the cause is an invalid input value. /// /// A specified resource cannot be located. ///
public GetMLModelAsync ( string mlModelId, bool verbose, System cancellationToken = default(CancellationToken) ) : Task
mlModelId string The ID assigned to the MLModel at creation.
verbose bool Specifies whether the GetMLModel operation should return Recipe. If true, Recipe is returned. If false, Recipe is not returned.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetMLModelResponse> GetMLModelAsync(string mlModelId, bool verbose, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetMLModelRequest();
            request.MLModelId = mlModelId;
            request.Verbose = verbose;
            return GetMLModelAsync(request, cancellationToken);
        }

Same methods

AmazonMachineLearningClient::GetMLModelAsync ( GetMLModelRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonMachineLearningClient::GetMLModelAsync ( string mlModelId, System cancellationToken = default(CancellationToken) ) : Task
AmazonMachineLearningClient