opener-coreference 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -14
- data/bin/coreference-daemon +10 -0
- data/exec/coreference.rb +9 -0
- data/lib/opener/coreference/version.rb +1 -1
- data/opener-coreference.gemspec +4 -1
- metadata +33 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7d548066b2b01126731767de74d0d65b6d4e97e
|
4
|
+
data.tar.gz: da1251f7753ba64023a08530e5eec5297885e248
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca8028edf7ed4ca51ff9c566cd6b4446b94d4f39aebf39d9ecc0fb841b8a03000eea9898d98c9380a90f293f027f7f48739f579e9e90cb5f2d8b7208f5025f69
|
7
|
+
data.tar.gz: 4dbee8e088a0fe050813c3e0ad05dfe13dd39b73ac5259355bdcf39eb094ba21c28e92e635d15f18ee3e24d8a5a727497e1390bba2b54728576a8674de3e36f4
|
data/README.md
CHANGED
@@ -3,17 +3,17 @@ Coreference
|
|
3
3
|
|
4
4
|
This Gem provides coreference resolution for various languages (en, es, it, nl, de, fr).
|
5
5
|
|
6
|
-
The CorefGraph
|
6
|
+
The CorefGraph module provides an implementation of the Multi-Sieve Pass system for for Coreference Resolution system originally proposed by the Stanford NLP Group (Lee et al., 2013). This system proposes a number of deterministic passes, ranging from high precision to higher recall, each dealing with a different manner in which coreference manifests itself in running text.
|
7
7
|
|
8
|
-
Although more sieves are available, in order to facilitate the integration of the coreference system for the 6 languages of OpeNER we have included here 4 sieves: Exact String Matching, Precise Constructs, Strict Head Match and Pronoun Match (the sieve nomenclature follows Lee et al (2013)
|
8
|
+
Although more sieves are available, in order to facilitate the integration of the coreference system for the 6 languages of OpeNER we have included here 4 sieves: Exact String Matching, Precise Constructs, Strict Head Match and Pronoun Match (the sieve nomenclature follows Lee et al (2013). Furthermore, as it has been reported, this sieves are responsible for most of the performance in the Stanford system.
|
9
9
|
|
10
|
-
The implementation is a result of a collaboration between the IXA NLP
|
10
|
+
The implementation is a result of a collaboration between the IXA NLP <http://ixa.si.ehu.es> and LinguaMedia Groups <http://linguamedia.deusto.es>.
|
11
11
|
|
12
12
|
### Confused by some terminology?
|
13
13
|
|
14
14
|
This software is part of a larger collection of natural language processing
|
15
15
|
tools known as "the OpeNER project". You can find more information about the
|
16
|
-
project at
|
16
|
+
project at [the OpeNER portal](http://opener-project.github.io). There you can
|
17
17
|
also find references to terms like KAF (an XML standard to represent linguistic
|
18
18
|
annotations in texts), component, cores, scenario's and pipelines.
|
19
19
|
|
@@ -90,10 +90,8 @@ Description of dependencies
|
|
90
90
|
---------------------------
|
91
91
|
|
92
92
|
This component runs best if you run it in an environment suited for OpeNER
|
93
|
-
components. You can find an installation guide and helper tools in the (
|
94
|
-
|
95
|
-
installation guide on the Opener
|
96
|
-
Website)[http://opener-project.github.io/getting-started/how-to/local-installation.html]
|
93
|
+
components. You can find an installation guide and helper tools in the [OpeNER installer](https://github.com/opener-project/opener-installer) and an
|
94
|
+
[installation guide on the Opener Website](http://opener-project.github.io/getting-started/how-to/local-installation.html)
|
97
95
|
|
98
96
|
At least you need the following system setup:
|
99
97
|
|
@@ -142,25 +140,25 @@ The Core
|
|
142
140
|
The component is a fat wrapper around the actual language technology core. You
|
143
141
|
can find the core technolies in the following repositories:
|
144
142
|
|
145
|
-
*
|
143
|
+
* [Coreference-base](https://github.com/opener-project/coreference-base)
|
146
144
|
|
147
145
|
Where to go from here
|
148
146
|
---------------------
|
149
147
|
|
150
|
-
* Check
|
151
|
-
*
|
148
|
+
* [Check the project websitere](http://opener-project.github.io)
|
149
|
+
* [Checkout the webservice](http://opener.olery.com/coreference)
|
152
150
|
|
153
151
|
Report problem/Get help
|
154
152
|
-----------------------
|
155
153
|
|
156
|
-
If you encounter problems, please email support@opener-project.eu or leave an
|
157
|
-
issue in the
|
154
|
+
If you encounter problems, please email <support@opener-project.eu> or leave an
|
155
|
+
issue in the [issue tracker](https://github.com/opener-project/coreference/issues).
|
158
156
|
|
159
157
|
|
160
158
|
Contributing
|
161
159
|
------------
|
162
160
|
|
163
|
-
1. Fork it
|
161
|
+
1. Fork it <http://github.com/opener-project/coreference/fork>
|
164
162
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
165
163
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
166
164
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/exec/coreference.rb
ADDED
data/opener-coreference.gemspec
CHANGED
@@ -14,7 +14,8 @@ Gem::Specification.new do |gem|
|
|
14
14
|
'lib/**/*',
|
15
15
|
'config.ru',
|
16
16
|
'*.gemspec',
|
17
|
-
'README.md'
|
17
|
+
'README.md',
|
18
|
+
'exec/**/*'
|
18
19
|
]).select { |file| File.file?(file) }
|
19
20
|
|
20
21
|
gem.executables = Dir.glob('bin/*').map { |file| File.basename(file) }
|
@@ -25,6 +26,8 @@ Gem::Specification.new do |gem|
|
|
25
26
|
gem.add_dependency 'opener-coreference-base'
|
26
27
|
gem.add_dependency 'opener-webservice'
|
27
28
|
gem.add_dependency 'puma'
|
29
|
+
gem.add_dependency 'opener-daemons'
|
30
|
+
gem.add_dependency 'opener-core', ['>= 0.1.2']
|
28
31
|
|
29
32
|
gem.add_development_dependency "rake"
|
30
33
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opener-coreference
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- development@olery.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sinatra
|
@@ -94,6 +94,34 @@ dependencies:
|
|
94
94
|
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: opener-daemons
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: opener-core
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.1.2
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.1.2
|
97
125
|
- !ruby/object:Gem::Dependency
|
98
126
|
name: rake
|
99
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -113,13 +141,16 @@ email:
|
|
113
141
|
executables:
|
114
142
|
- coreference
|
115
143
|
- coreference-server
|
144
|
+
- coreference-daemon
|
116
145
|
extensions: []
|
117
146
|
extra_rdoc_files: []
|
118
147
|
files:
|
119
148
|
- README.md
|
120
149
|
- bin/coreference
|
150
|
+
- bin/coreference-daemon
|
121
151
|
- bin/coreference-server
|
122
152
|
- config.ru
|
153
|
+
- exec/coreference.rb
|
123
154
|
- lib/opener/coreference.rb
|
124
155
|
- lib/opener/coreference/cli.rb
|
125
156
|
- lib/opener/coreference/public/markdown.css
|