Module mls_lib.model_training.svm_trainer

SVMTrainer: Component that trains and makes predictions.

Classes

class SVMTrainer (kernel, features, truth)

SVMTrainer: Component that trains and makes predictions.

Expand source code
class SVMTrainer(SKLModelTrainer):
    """ SVMTrainer: Component that trains and makes predictions. """
    def __init__(self, kernel, features, truth) -> None:
        super().__init__(
            features = features,
            truth = truth,
            model = SVMModel(
                kernel = kernel
            )
        )

Ancestors

Inherited members