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

org.deeplearning4j.models.fasttext.FTOptions Maven / Gradle / Ivy

package org.deeplearning4j.models.fasttext;

public enum FTOptions {
    INPUT_FILE("-input"),
    OUTPUT_FILE("-output");

    private final String name;

    FTOptions(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return this.name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy