-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrubyml.gemspec
More file actions
19 lines (19 loc) · 769 Bytes
/
rubyml.gemspec
File metadata and controls
19 lines (19 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |s|
s.name = 'rubyml'
s.version = '0.0.1'
s.add_runtime_dependency 'gruff', ['= 0.6.0']
s.add_development_dependency 'coveralls', ['= 0.8.13']
s.date = '2016-04-29'
s.summary = 'A simple Ruby machine learning library.'
s.description = 'This is a simple machine learning library
written in Ruby. It provides implementations of linear regression
and multiclass perceptron and visualization and validation methods
to verify results. Also included are helper methods to work with
training and testing data.'
s.authors = ['Palimar Rao']
s.files = ['lib/rubyml.rb',
'lib/rubyml/tools.rb',
'lib/rubyml/linear_regression.rb',
'lib/rubyml/perceptron.rb']
s.license = 'MIT'
end