glove 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,18 @@
1
+ if ENV['CI']
2
+ require "codeclimate-test-reporter"
3
+ CodeClimate::TestReporter.start
4
+ else
5
+ require 'simplecov'
6
+ SimpleCov.start
7
+ end
8
+
9
+ require 'rspec'
10
+ require 'glove'
11
+
12
+ RSpec.configure do |c|
13
+ c.mock_with :rspec
14
+ end
15
+
16
+ def fixtures_path
17
+ File.expand_path File.join(File.dirname(__FILE__), 'fixtures')
18
+ end
metadata ADDED
@@ -0,0 +1,177 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: glove
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Veselin Vasilev
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-04-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.1'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.1'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rb-gsl
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.16'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.16'
69
+ - !ruby/object:Gem::Dependency
70
+ name: fast-stemmer
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: parallel
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.3'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.3'
97
+ description: GloVe is an unsupervised learning algorithm for obtaining vector representations
98
+ for words. Training is performed on aggregated global word-word co-occurrence statistics
99
+ from a corpus, and the resulting representations showcase interesting linear substructures
100
+ of the word vector space. This is a pure Ruby implementation of GloVe utilizing
101
+ GSL.
102
+ email:
103
+ - vesselinv@me.com
104
+ executables: []
105
+ extensions: []
106
+ extra_rdoc_files: []
107
+ files:
108
+ - ".gitignore"
109
+ - ".rspec"
110
+ - ".travis.yml"
111
+ - Gemfile
112
+ - LICENSE.txt
113
+ - README.md
114
+ - Rakefile
115
+ - benchmark/benchmark.rb
116
+ - benchmark/co-occurrence.rb
117
+ - benchmark/data/quantum-physics.txt
118
+ - benchmark/profile.rb
119
+ - benchmark/results/.keep
120
+ - glove.gemspec
121
+ - lib/glove.rb
122
+ - lib/glove/corpus.rb
123
+ - lib/glove/model.rb
124
+ - lib/glove/parser.rb
125
+ - lib/glove/token_pair.rb
126
+ - lib/glove/version.rb
127
+ - lib/glove/workers.rb
128
+ - lib/glove/workers/cooccurrence_worker.rb
129
+ - lib/glove/workers/training_worker.rb
130
+ - resources/en.stop
131
+ - spec/fixtures/biases-t.bin
132
+ - spec/fixtures/cooc-t.bin
133
+ - spec/fixtures/corpus-t.bin
134
+ - spec/fixtures/words-t.bin
135
+ - spec/lib/glove/corpus_spec.rb
136
+ - spec/lib/glove/model_spec.rb
137
+ - spec/lib/glove/parser_spec.rb
138
+ - spec/lib/glove/token_pair_spec.rb
139
+ - spec/lib/glove/workers/cooccurrence_worker_spec.rb
140
+ - spec/lib/glove/workers/training_worker_spec.rb
141
+ - spec/spec_helper.rb
142
+ homepage: https://github.com/vesselinv/glove
143
+ licenses:
144
+ - MIT
145
+ metadata: {}
146
+ post_install_message:
147
+ rdoc_options: []
148
+ require_paths:
149
+ - lib
150
+ required_ruby_version: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: '0'
155
+ required_rubygems_version: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ requirements: []
161
+ rubyforge_project:
162
+ rubygems_version: 2.4.5
163
+ signing_key:
164
+ specification_version: 4
165
+ summary: Global Vectors for Word Representation
166
+ test_files:
167
+ - spec/fixtures/biases-t.bin
168
+ - spec/fixtures/cooc-t.bin
169
+ - spec/fixtures/corpus-t.bin
170
+ - spec/fixtures/words-t.bin
171
+ - spec/lib/glove/corpus_spec.rb
172
+ - spec/lib/glove/model_spec.rb
173
+ - spec/lib/glove/parser_spec.rb
174
+ - spec/lib/glove/token_pair_spec.rb
175
+ - spec/lib/glove/workers/cooccurrence_worker_spec.rb
176
+ - spec/lib/glove/workers/training_worker_spec.rb
177
+ - spec/spec_helper.rb