-
Notifications
You must be signed in to change notification settings - Fork 0
Introduction
This project is a flask based project for converting wordnet to graphs. Various graphs can be created using various methods exposed through flask views.
Views implemented :
Convert the wordnet data(words, relations, examples) to a graph based data storage, where nodes are words and edges are relations between words.
Add examples from the specified corpus(corpus_to_use) to the graph.
Add examples to a new graph, where each example is made up of chain of nodes and nodes are words, and edges demonstrate order in the example as a sentence.
This method converts example sentences to dependency trees, converts the complete network to a graph. Here the graph has nodes which are words and edges are dependencies among words in a sentence.
This method converts wordnet to a graph where nodes are senses(definition of words) and relations are relations between senses.