File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ seconds on a modest laptop.
2020* Iteration of the database
2121* Lemmatization
2222
23+ ## Missing features
24+
25+ * Morphology - specifically generating a lemma from input text
26+
2327## Example Usage
2428
2529``` golang
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ type index struct {
2222 sense uint8
2323}
2424
25- // A single word which was looked up in the wordnet database
25+ // The results of a search against the wordnet database
2626type Lookup struct {
2727 word string // the word the user searched for
2828 cluster * cluster // the discoverd synonym set
@@ -56,6 +56,7 @@ type cluster struct {
5656// Parts of speech
5757type PartOfSpeech uint8
5858
59+ // A set of multiple parts of speech
5960type PartOfSpeechList []PartOfSpeech
6061
6162func (l PartOfSpeechList ) Empty () bool {
You can’t perform that action at this time.
0 commit comments