-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.txt
108 lines (80 loc) · 3.66 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
Stanford CoreNLP v1.3.5 - 2013-04-04
Stanford's Suite of NLP Tools
-----------------------------
Copyright (c) 2009-2012 The Board of Trustees of
The Leland Stanford Junior University. All Rights Reserved.
DOCUMENTATION
Please look at the URL below for documention for Stanford CoreNLP:
http://nlp.stanford.edu/software/corenlp.shtml
LICENSE
//
// StanfordCoreNLP -- a suite of NLP tools
// Copyright (c) 2012 The Board of Trustees of
// The Leland Stanford Junior University. All Rights Reserved.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// For more information, bug reports, fixes, contact:
// Christopher Manning
// Dept of Computer Science, Gates 1A
// Stanford CA 94305-9010
// USA
//
##################################################################################
Unofficial Branch by Ben Blamey, Cardiff Metropolitan University - Autumn 2013.
Proof-of-Concept support for representing temporal expressions as a probability density function.
See: http://benblamey.name
Online demo: http://www.socialworld.co.uk:8080/SUTimeDemo/Index
Paper download: http://benblamey.name/pubs/ai_2013/blamey13parsing.pdf
@INCOLLECTION{blamey13parsing,
author = {Blamey, Ben and Crick, Tom and Oatley, Giles},
editor = {Bramer, Max and Petridis, Miltos},
title = {'The First Day of Summer': Parsing Temporal Expressions with Distributed
Semantics},
booktitle = {Research and Development in Intelligent Systems XXX},
year = {2013},
language = {English},
publisher = {Springer International Publishing},
isbn = {978-3-319-02620-6},
pages = {389-402},
doi = {10.1007/978-3-319-02621-3_29},
url = {http://dx.doi.org/10.1007/978-3-319-02621-3_29}
}
##################################################################################
---------------------------------
CHANGES
---------------------------------
2013-04-04 1.3.5 Speed improvements, coref improvements,
Chinese version, -nthreads option
2012-11-12 1.3.4 Improved ner model and dependency code,
now possible to change annotator pool for
later StanfordCoreNLP objects
2012-07-09 1.3.3 Minor bug fixes
2012-05-22 1.3.2 Improvements to sutime
2012-03-09 1.3.1 Now supports caseless models (available as DLC)
2011-12-16 1.3.0 Threadsafe!
Bugs in time annotation fixed
2011-09-14 1.2.0 Time expression recognizer added to ner annotator
Output bugfixes
Parser can now substitute for tagger
2011-06-19 1.1.0 Improved coref release
2011-05-15 1.0.4 More efficient dcoref data structure
Supports already-tokenized input text
2011-04-17 1.0.3 Compatible with other releases
Support loading arbitrary annotators
Tagger bug fixes, such as "EOS" token
2010-11-11 1.0.2 Remove wn.jar
2010-11-11 1.0.1 Add xml removal
2010-10-07 1.0 Initial release