initial
[nltk_ontology_framework.git] / src / nltk_x / ontology / stupid.py
blobce62cb6ea412dbfc97a3875cba1c18d5d886dc7b
1 # This Python file uses the following encoding: utf-8
2 '''
3 Created on Apr 29, 2011
5 @author: mjacob
6 '''
7 from frame import framework, terms, synonyms, concepts, concept_hierarchies, relations
9 class stupid_terms(terms):
10 def _get_terms(self, **state):
11 """input: 1 domain corpus, 1 general corpus
12 identify term candidates in each (NPs that fit some statistics)
13 remove terms identified in general corpus from domain corpus"""
14 pass
16 class stupid_synonyms(synonyms):
17 def _get_synonyms(self, **state):
18 pass
20 class stupid_concepts(concepts):
21 def _get_concepts(self, **state):
22 pass
24 class stupid_concept_hierarchies(concept_hierarchies):
25 def _get_concept_hierarchies(self, **state):
26 pass
28 class stupid_relations(relations):
29 def _get_relations(self, **state):
30 pass
32 class stupid(framework, stupid_terms, stupid_synonyms, stupid_concepts, stupid_concept_hierarchies, stupid_relations):
33 pass