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

org.opensearch.ml.common.model.MLModelFormat Maven / Gradle / Ivy

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

package org.opensearch.ml.common.model;

public enum MLModelFormat {
    ONNX,
    TORCH_SCRIPT;

    public static MLModelFormat from(String value) {
        try {
            return MLModelFormat.valueOf(value);
        } catch (Exception e) {
            throw new IllegalArgumentException("Wrong model format");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy