de.datexis.encoder.elmo.ELMoLayerOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of texoo-encoder-api Show documentation
Show all versions of texoo-encoder-api Show documentation
TeXoo REST encoder interface
package de.datexis.encoder.elmo;
public enum ELMoLayerOutput {
TOP("top"),
MIDDLE("middle"),
BOTTOM("bottom"),
AVERAGE("average");
private String path;
ELMoLayerOutput(String path) {
this.path = path;
}
public String getPath() {
return path;
}
}