Skip to content

WordNet: a semantic lexicon for the English language which describes relationships between synsets (sets of synonyms)

Notifications You must be signed in to change notification settings

Imlerith/WordNet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

WordNet

WordNet is a semantic lexicon for the English language which describes relationships between synsets (sets of synonyms).

One such relationship is the is-a relationship, which connects a hyponym (more specific synset) to a hypernym (more general synset).

The implementation is via a rooted acyclic directed graph (DAG) where each vertex v is an integer that represents a synset, and each directed edge v→w represents that w is a hypernym of v.

Realized functionality:

  • building a WordNet from the sets of synsets and hypernyms,
  • finding shortest ancestral paths between synsets and subsets of synsets (using breadth-first search in the process),
  • finding outliers in given sets of words based on the constructed wordnet.

About

WordNet: a semantic lexicon for the English language which describes relationships between synsets (sets of synonyms)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages