Package nltk_lite :: Package semantics
[hide private]
[frames] | no frames]

Source Code for Package nltk_lite.semantics

 1  # Natural Language Toolkit: Semantic Interpretation 
 2  # 
 3  # Copyright (C) 2001-2007 University of Pennsylvania 
 4  # Author: Ewan Klein <ewan@inf.ed.ac.uk> 
 5  # URL: <http://nltk.sf.net> 
 6  # For license information, see LICENSE.TXT 
 7   
 8  """ 
 9  This package contains classes for representing semantic structure in 
10  formulas of first-order logic and for evaluating such formulas in 
11  set-theoretic models. 
12   
13  """ 
14   
15   
16  from evaluate import * 
17  from logic import * 
18  from utilities import * 
19