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

org.opensearch.ml.common.input.parameter.MLAlgoParams Maven / Gradle / Ivy

The newest version!
/*
 * Copyright OpenSearch Contributors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.opensearch.ml.common.input.parameter;

import org.opensearch.core.common.io.stream.NamedWriteable;
import org.opensearch.core.xcontent.ToXContentObject;

/**
 * Machine learning algorithms parameter interface.
 * Implement this interface when add a new algorith.
 */
public interface MLAlgoParams extends ToXContentObject, NamedWriteable {

    int getVersion();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy