]> git.donarmstrong.com Git - deb_pkgs/scowl.git/blob - r/pos/README
[svn-inject] Installing original source of scowl
[deb_pkgs/scowl.git] / r / pos / README
1 Part Of Speech Database
2 July 23, 2000
3
4 Compiled by Kevin Atkinson <kevina@users.sourceforge.net>
5
6 The part-of-speech.txt file contains is a combination of 
7 "Moby (tm) Part-of-Speech II" and the WordNet database.
8
9 The latest version can be found at http://aspell.sourceforge.net/wl/.
10
11 The format of each entry is
12 <word><tab><POS tag(s)><unix newline>
13
14 Where the POS tag is one or more of the following:
15
16 N       Noun
17 P       Plural
18 h       Noun Phrase
19 V       Verb (usu participle)
20 t       Verb (transitive)
21 i       Verb (intransitive)
22 A       Adjective
23 v       Adverb
24 C       Conjunction
25 P       Preposition
26 !       Interjection
27 r       Pronoun
28 D       Definite Article
29 I       Indefinite Article
30 o       Nominative
31
32 The parts of speech before any '|' (if at all) come from the original
33 Moby database.  Anything after the '|' comes from the WordNet
34 database.  The part of speech tags from the original Moby database are
35 in priority order where the principle usage is listed first.  The ones
36 from the WordNet database are not.  Entries from the moby database
37 have had any accents removed, the "ae" character expanded, the
38 pound, yen, and peseta sign converted to a '$' and the CP437
39 character 0xBE replaced with a '~'.
40
41                                 CREATION
42
43 The C++ program used to create the database is also included for those
44 of you are interested.  The WordNet database will require a bit of
45 preprocessing with the following command:
46   cat POS.lst | sed -n 's/\([^ ][^ ]*\) /\1/p' | tr '_' ' ' > noun.POS 
47 The paths will also need to be changed in order to get it to run.
48
49
50                                COPYRIGHT
51
52 The Moby database was explicitly pleased in the public domain:
53
54     The Moby lexicon project is complete and has
55     been place into the public domain. Use, sell,
56     rework, excerpt and use in any way on any platform.
57     
58     Placing this material on internal or public servers is
59     also encouraged. The compiler is not aware of any
60     export restrictions so freely distribute world-wide.
61     
62     You can verify the public domain status by contacting
63     
64     Grady Ward
65     3449 Martha Ct.
66     Arcata, CA  95521-4884
67     
68     grady@netcom.com
69     grady@northcoast.com
70
71
72 The WordNet database is under the following Copyright:
73
74     This software and database is being provided to you, the LICENSEE, by
75     Princeton University under the following license.  By obtaining, using  
76     and/or copying this software and database, you agree that you have  
77     read, understood, and will comply with these terms and conditions.:  
78   
79     Permission to use, copy, modify and distribute this software and
80     database and its documentation for any purpose and without fee or
81     royalty is hereby granted, provided that you agree to comply with  
82     the following copyright notice and statements, including the disclaimer,  
83     and that the same appear on ALL copies of the software, database and  
84     documentation, including modifications that you make for internal  
85     use or for distribution.  
86   
87     WordNet 1.6 Copyright 1997 by Princeton University.  All rights reserved.  
88   
89     THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON  
90     UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR  
91     IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON  
92     UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT-  
93     ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE  
94     OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT  
95     INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR  
96     OTHER RIGHTS.
97   
98     The name of Princeton University or Princeton may not be used in  
99     advertising or publicity pertaining to distribution of the software  
100     and/or database.  Title to copyright in this software, database and  
101     any associated documentation shall at all times remain with  
102     Princeton University and LICENSEE agrees to preserve same.  
103
104 I assign no additional copyright to the combined database and the
105 software is explicitly being pleased in the public domain. However, I
106 would appreciate credit for my work.
107
108
109
110
111
112
113
114
115