All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.xpack.core.ml.inference.trainedmodel.NullInferenceConfig Maven / Gradle / Ivy

/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0; you may not use this file except in compliance with the Elastic License
 * 2.0.
 */
package org.elasticsearch.xpack.core.ml.inference.trainedmodel;

import org.elasticsearch.Version;
import org.elasticsearch.common.io.stream.StreamOutput;
import org.elasticsearch.common.xcontent.XContentBuilder;

import java.io.IOException;

/**
 * Used by ensemble to pass into sub-models.
 */
public class NullInferenceConfig implements InferenceConfig {

    private final boolean requestingFeatureImportance;


    public NullInferenceConfig(boolean requestingFeatureImportance) {
        this.requestingFeatureImportance = requestingFeatureImportance;
    }

    @Override
    public boolean isTargetTypeSupported(TargetType targetType) {
        return true;
    }

    @Override
    public Version getMinimalSupportedVersion() {
        return Version.CURRENT;
    }

    @Override
    public String getWriteableName() {
        return "null";
    }

    @Override
    public void writeTo(StreamOutput out) throws IOException {
        throw new UnsupportedOperationException("Unable to serialize NullInferenceConfig objects");
    }

    @Override
    public String getName() {
        return "null";
    }

    @Override
    public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
        throw new UnsupportedOperationException("Unable to write xcontent from NullInferenceConfig objects");
    }

    @Override
    public boolean requestingImportance() {
        return requestingFeatureImportance;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy