AWSSDK.MachineLearning by Amazon Web Services

<PackageReference Include="AWSSDK.MachineLearning" Version="3.3.100.60" />

.NET API 135,168 bytes

 Prediction

public class Prediction
The output from a Predict operation:

Details - Contains the following attributes: DetailsAttributes.PREDICTIVE_MODEL_TYPE - REGRESSION | BINARY | MULTICLASSDetailsAttributes.ALGORITHM - SGD

PredictedLabel - Present for either a BINARY or MULTICLASSMLModel request.

PredictedScores - Contains the raw classification score corresponding to each label.

PredictedValue - Present for a REGRESSIONMLModel request.

public Dictionary<string, string> Details { get; set; }

Gets and sets the property Details.

public string PredictedLabel { get; set; }

Gets and sets the property PredictedLabel.

The prediction label for either a BINARY or MULTICLASSMLModel.

public Dictionary<string, float> PredictedScores { get; set; }

Gets and sets the property PredictedScores.

public float PredictedValue { get; set; }

Gets and sets the property PredictedValue. The prediction value for REGRESSIONMLModel.

public Prediction()