Source code for immuneML.workflows.steps.MLMethodAssessmentParams
from pathlib import Path
from immuneML.data_model.datasets.Dataset import Dataset
from immuneML.environment.Label import Label
from immuneML.ml_methods.classifiers.MLMethod import MLMethod
from immuneML.ml_metrics.ClassificationMetric import ClassificationMetric
from immuneML.workflows.steps.StepParams import StepParams
[docs]
class MLMethodAssessmentParams(StepParams):
def __init__(self, method: MLMethod, dataset: Dataset, metrics: set, optimization_metric: ClassificationMetric, label: Label,
path: Path, split_index: int, predictions_path: Path, ml_score_path: Path):
self.method = method
self.dataset = dataset
self.metrics = metrics
self.optimization_metric = optimization_metric
self.path = path
self.label = label
self.split_index = split_index
self.predictions_path = predictions_path
self.ml_score_path = ml_score_path