/** * KOSHIK is an NLP framework for large scale processing using Hadoop. * Copyright © 2014 Peter Exner * * This file is part of KOSHIK. * * KOSHIK is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * KOSHIK is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with KOSHIK. If not, see <http://www.gnu.org/licenses/>. */ package se.lth.cs.koshik.input.conll; public class CoNLLFeature { public static final String ID = "ID"; public static final String FORM = "FORM"; public static final String LEMMA = "LEMMA"; public static final String PLEMMA = "PLEMMA"; public static final String POS = "POS"; public static final String PPOS = "PPOS"; public static final String FEAT = "FEAT"; public static final String PFEAT = "PFEAT"; public static final String CPOSTAG = "CPOSTAG"; public static final String POSTAG = "POSTAG"; public static final String FEATS = "FEATS"; public static final String HEAD = "HEAD"; public static final String PHEAD = "PHEAD"; public static final String DEPREL = "DEPREL"; public static final String PDEPREL = "PDEPREL"; public static final String FILLPRED = "FILLPRED"; public static final String PRED = "PRED"; public static final String APRED = "APRED"; }