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

eu.fbk.fcw.udpipe.api.UDPipeAnnotations Maven / Gradle / Ivy

The newest version!
package eu.fbk.fcw.udpipe.api;

import edu.stanford.nlp.ling.CoreAnnotation;
import edu.stanford.nlp.util.ErasureUtils;
import eu.fbk.utils.gson.JSONLabel;

/**
 * Created by giovannimoretti on 19/05/16.
 */
public class UDPipeAnnotations {

    @JSONLabel("udpipe_lemma")
    public static class LemmaAnnotation implements CoreAnnotation {

        public Class getType() {
            return ErasureUtils.uncheckedCast(String.class);
        }
    }

    @JSONLabel("udpipe_original")
    public static class UDPipeOriginalAnnotation implements CoreAnnotation {

        public Class getType() {
            return ErasureUtils.uncheckedCast(String.class);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy