com.googlecode.clearnlp.generation.LGLibEn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clearnlp Show documentation
Show all versions of clearnlp Show documentation
Fast and robust NLP components implemented in Java.
The newest version!
/**
* Copyright 2013 IPSoft Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.googlecode.clearnlp.generation;
import java.util.List;
import com.googlecode.clearnlp.constant.english.ENAux;
import com.googlecode.clearnlp.constant.english.ENModal;
import com.googlecode.clearnlp.constant.english.ENPronoun;
import com.googlecode.clearnlp.constant.universal.STConstant;
import com.googlecode.clearnlp.constituent.CTLibEn;
import com.googlecode.clearnlp.dependency.DEPArc;
import com.googlecode.clearnlp.dependency.DEPLibEn;
import com.googlecode.clearnlp.dependency.DEPNode;
import com.googlecode.clearnlp.dependency.DEPTree;
import com.googlecode.clearnlp.morphology.MPLibEn;
import com.googlecode.clearnlp.util.UTString;
/**
* @since 1.4.0
* @author Jinho D. Choi ({@code [email protected]})
*/
public class LGLibEn
{
/**
* Converts all forms of "you" to "I" and vice versa.
* PRE: {@link DEPTree#setDependents()} is called.
*/
static public void convertUnI(DEPTree tree)
{
int i, size = tree.size();
DEPNode node, head;
for (i=1; i John's). */
static public String getPossessiveForm(String nounForm)
{
String suffix = nounForm.endsWith("s") ? "'" : "'s";
return nounForm + suffix;
}
static public String getForms(DEPTree tree, boolean useCoref, String delim)
{
StringBuilder build = new StringBuilder();
int i, size = tree.size();
DEPNode prev = null, curr;
String s;
for (i=1; i deps = node.getDependents();
int i, size = deps.size();
boolean notAdded = true;
DEPNode curr;
for (i=0; i node.id)
{
prev = addForm(build, node, prev, useCoref, delim);
notAdded = false;
}
if (curr.getDependents().isEmpty())
prev = addForm(build, curr, prev, useCoref, delim);
else
getSubFormsAux(build, curr, prev, useCoref, delim);
}
if (notAdded)
prev = addForm(build, node, prev, useCoref, delim);
}
/** Called by {@link LGLibEn#getSubFormsAux(StringBuilder, DEPNode, String)}. */
static private DEPNode addForm(StringBuilder build, DEPNode curr, DEPNode prev, boolean useCoref, String delim)
{
if (!curr.isForm(STConstant.EMPTY))
{
if (!attachLeft(curr, prev)) build.append(delim);
String coref = useCoref ? getReferentValueOf3rdPronoun(curr) : null;
if (coref != null) build.append(coref);
else build.append(curr.form);
}
return curr;
}
/** Called by {@link DEPNode#getSubFormsAux(DEPNode, String, StringBuilder)} */
static private boolean attachLeft(DEPNode curr, DEPNode prev)
{
String lower = curr.form.toLowerCase();
if (lower.startsWith("'"))
{
if (curr.isPos(CTLibEn.POS_POS))
return true;
if (MPLibEn.isVerb(curr.pos) || curr.isPos(CTLibEn.POS_MD) || curr.isPos(CTLibEn.POS_RQ) || curr.isLabel(DEPLibEn.DEP_NEG))
return true;
}
else if (lower.equals("n't"))
return true;
else if (lower.equals("not"))
{
if (prev != null && prev.isLemma(ENModal.CAN))
{
curr.form = "'t";
return true;
}
String pLower = prev.form.toLowerCase();
if (pLower.equals(ENAux.DO) || pLower.equals(ENAux.DOES) || pLower.equals(ENAux.DID) || (prev != null && prev.isLemma(ENModal.COULD) || prev.isLemma(ENModal.SHOULD) || prev.isLemma(ENModal.WOULD)))
{
curr.form = "n't";
return true;
}
}
else if (curr.isPos(CTLibEn.POS_HYPH) || curr.isPos(CTLibEn.POS_COLON) || curr.isPos(CTLibEn.POS_COMMA) || curr.isPos(CTLibEn.POS_PERIOD) || curr.isPos(CTLibEn.POS_RQ) || curr.isPos(CTLibEn.POS_RRB))
return true;
else if (prev != null && (prev.isPos(CTLibEn.POS_HYPH) || prev.isPos(CTLibEn.POS_LQ) || prev.isPos(CTLibEn.POS_LRB)))
return true;
return false;
}
static public String getReferentValueOf3rdPronoun(DEPNode node)
{
String coref = node.getFeat(DEPLibEn.FEAT_COREF);
if (coref == null) return null;
if (node.isLemma("his") || node.isLemma("hers") || node.isLemma("its") || node.lemma.startsWith("our") || node.lemma.startsWith("your") || node.lemma.startsWith("their"))
return getPossessiveForm(coref);
if (node.isLemma("he") || node.isLemma("him") || node.isLemma("she") || node.isLemma("it") || node.isLemma("we") || node.isLemma("us") || node.isLemma("they") || node.isLemma("them"))
return coref;
if (node.isLemma("her"))
return node.isPos(CTLibEn.POS_PRPS) ? getPossessiveForm(coref) : coref;
return null;
}
static public void convertFirstFormToUpperCase(DEPTree tree)
{
DEPNode fst = tree.get(1);
fst.form = UTString.convertFirstCharToUpper(fst.form);
}
static public void convertFirstFormToLowerCase(DEPTree tree)
{
DEPNode fst = tree.get(1);
if (!fst.pos.startsWith(CTLibEn.POS_NNP) && !fst.isLemma(ENPronoun.I))
fst.form = fst.form.toLowerCase();
}
}