edu.cmu.sv.domain.ontology.Noun Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoda Show documentation
Show all versions of yoda Show documentation
A library that allows rapid prototyping of dialog systems (language understanding, discourse modelling, dialog management, language generation).
package edu.cmu.sv.domain.ontology;
/**
* Created by David Cohen on 9/20/14.
*/
public class Noun {
public String name;
public Noun directParent;
public Noun(String name, Noun directParent) {
this.name = name;
this.directParent = directParent;
}
}