Type Alias ExperimentVersionInput

Input for creating a new experiment version. Defaults provided in the ProfileInsights response.

type ExperimentVersionInput = {
    data: {
        attributes: {
            algorithms?: ModelAlgorithm[];
            dataSetId: DataSetId;
            datasetOrigin?: DatasetOrigin;
            dateIndexes?: DateIndexes;
            experimentMode: ExperimentMode;
            experimentType: ExperimentType;
            featuresList: FeaturesList;
            name: string;
            pipeline?: Pipeline;
            target: string;
            trainingDuration?: TrainingDuration;
        };
        type: "experiment-version";
    };
}
Index

Properties

Properties

data: {
    attributes: {
        algorithms?: ModelAlgorithm[];
        dataSetId: DataSetId;
        datasetOrigin?: DatasetOrigin;
        dateIndexes?: DateIndexes;
        experimentMode: ExperimentMode;
        experimentType: ExperimentType;
        featuresList: FeaturesList;
        name: string;
        pipeline?: Pipeline;
        target: string;
        trainingDuration?: TrainingDuration;
    };
    type: "experiment-version";
}