Skip to content

Commit

Permalink
WNcsv-3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ekaf committed May 7, 2020
0 parents commit 5ab85ed
Show file tree
Hide file tree
Showing 34 changed files with 805,889 additions and 0 deletions.
31 changes: 31 additions & 0 deletions LICENSE-wn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
WordNet 3.1 License

1 This software and database is being provided to you, the LICENSEE, by
2 Princeton University under the following license. By obtaining, using
3 and/or copying this software and database, you agree that you have
4 read, understood, and will comply with these terms and conditions.:
5
6 Permission to use, copy, modify and distribute this software and
7 database and its documentation for any purpose and without fee or
8 royalty is hereby granted, provided that you agree to comply with
9 the following copyright notice and statements, including the disclaimer,
10 and that the same appear on ALL copies of the software, database and
11 documentation, including modifications that you make for internal
12 use or for distribution.
13
14 WordNet 3.1 Copyright 2011 by Princeton University. All rights reserved.
15
16 THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON
17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
18 IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON
19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT-
20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE
21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT
22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR
23 OTHER RIGHTS.
24
25 The name of Princeton University or Princeton may not be used in
26 advertising or publicity pertaining to distribution of the software
27 and/or database. Title to copyright in this software, database and
28 any associated documentation shall at all times remain with
29 Princeton University and LICENSEE agrees to preserve same.
9 changes: 9 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
WNcsv
https://github.com/ekaf/WNcsv/
(c) 2020 Eric Kafe

License CC BY 4.0
https://creativecommons.org/licenses/by/4.0/

WordNet databases and documentation (c) Princeton University
see LICENSE-wn.md
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# WNcsv (c) 2020 Eric Kafe
# License: CC BY 4.0, https://creativecommons.org/licenses/by/4.0/

tab:
@chmod a+x csv2tab
@echo Converting CSV databases to TAB
./csv2tab

clean:
@echo Deleting TAB files
@rm csv/*.tab

43 changes: 43 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
WNcsv-3.1 is a CSV-formatted version of WordNet 3.1,
derived from WNprolog-3.1 by Eric Kafe
(https://github.com/ekaf/wordnet-prolog).

The Prolog databases were generated from the original
WordNet 3.1 databases, and bundled with a copy of the
WNprolog-3.0 documentation (c) 2012 Princeton University.

The present release contains the following numbers of
unique database posts:

- wn_ant.csv: 7988
- wn_at.csv: 1278
- wn_cls.csv: 9559
- wn_cs.csv: 221
- wn_der.csv: 74781
- wn_ent.csv: 408
- wn_fr.csv: 21684
- wn_g.csv: 117791
- wn_hyp.csv: 89172
- wn_ins.csv: 8589
- wn_mm.csv: 12288
- wn_mp.csv: 9111
- wn_ms.csv: 797
- wn_per.csv: 8074
- wn_ppl.csv: 73
- wn_sa.csv: 4054
- wn_s.csv: 207272
- wn_sim.csv: 21434
- wn_sk.csv: 207272
- wn_syntax.csv: 1054
- wn_vgp.csv: 1744
- total: 804644


## Utilities:

For convenient inter-operation with other projects, the included _csv2tab_ script
converts the CSV databases to tab-separated files, which can be easily imported
into many database systems.

- "make tab" produces a ".tab" file for every ".csv" file in the "csv" directory.
- "make clean" deletes the ".tab" files.
Loading

0 comments on commit 5ab85ed

Please sign in to comment.