java.lang.Object
java.lang.Enum<Word2VecType>
de.uni_mannheim.informatik.dws.melt.matching_ml.python.Word2VecType
All Implemented Interfaces:
Serializable, Comparable<Word2VecType>, java.lang.constant.Constable

public enum Word2VecType extends Enum<Word2VecType>
Type of word2vec model/approach like CBOW or SG.
  • Enum Constant Details

    • CBOW

      public static final Word2VecType CBOW
      Continuous bag-of-words model for word2vec. In case of Doc2Vec this represents PV-DM.
    • SG

      public static final Word2VecType SG
      Skip-gram model for word2vec. In case of Doc2Vec this represents PV-DBOW.
  • Constructor Details

    • Word2VecType

      private Word2VecType()
  • Method Details

    • values

      public static Word2VecType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Word2VecType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Word2VecType>