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

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

package org.deeplearning4j.models.fasttext;

public enum FTLossFunctions {
    HS("hs"),
    NS("ns"),
    SOFTMAX("softmax");

    private final String name;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy