Enumeration ModelParameterApproachType

Generated

from enum cyclonedx.v1_6.ModelParameterApproachType

Enumeration Members

REINFORCED_LEARNING: 2

Reinforcement learning is a type of machine learning where an agent learns to make decisions by interacting with an environment to maximize cumulative rewards, through trial and error.

Generated

from enum value: MODEL_PARAMETER_APPROACH_TYPE_REINFORCED_LEARNING = 2;

SELF_SUPERVISED: 4

Self-supervised machine learning involves training models to predict parts of the input data from other parts of the same data, without requiring external labels, enabling learning from large amounts of unlabeled data.

Generated

from enum value: MODEL_PARAMETER_APPROACH_TYPE_SELF_SUPERVISED = 4;

SEMI_SUPERVISED: 3

Semi-supervised machine learning utilizes a combination of labeled and unlabeled data during training to improve model performance, leveraging the benefits of both supervised and unsupervised learning techniques.

Generated

from enum value: MODEL_PARAMETER_APPROACH_TYPE_SEMI_SUPERVISED = 3;

SUPERVISED: 0

buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- value 0 is a fallback(meaning "unspecified") in protobuf3. this usage here is an error, it shall be fixed with v2.0 of this very schema Supervised machine learning involves training an algorithm on labeled data to predict or classify new data based on the patterns learned from the labeled examples.

Generated

from enum value: MODEL_PARAMETER_APPROACH_TYPE_SUPERVISED = 0;

UNSUPERVISED: 1

Unsupervised machine learning involves training algorithms on unlabeled data to discover patterns, structures, or relationships without explicit guidance, allowing the model to identify inherent structures or clusters within the data.

Generated

from enum value: MODEL_PARAMETER_APPROACH_TYPE_UNSUPERVISED = 1;