ruby_ml 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/ruby_ml.rb +9 -0
  3. metadata +44 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ada13ee29a0e6e33080812f058da95ce0804b840
4
+ data.tar.gz: 5b6dd87e357715c2a5b0cbc06d396b82438bd4bf
5
+ SHA512:
6
+ metadata.gz: 7262009bcec7ec0ac313ae82ea6a37157e6cd376b12e51395360d7797aa401153ebde4ded3c7210fd15121bf6a8e48a1ce593404e7779444eda32d57555aa562
7
+ data.tar.gz: 1b5deb4504e24f23cf608e4c0c207e6332d868bfefef9ae142f1a2f5121a59a3ce6cc4af97a865ab9fe44d5ee76d6f5dac068f4b98ab18d378336e136da5afdc
data/lib/ruby_ml.rb ADDED
@@ -0,0 +1,9 @@
1
+ require 'nmatrix'
2
+
3
+ class RubyML
4
+ include RubyML::LinearRegression
5
+
6
+ def initialize(samples)
7
+ @samples = samples
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,44 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby_ml
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Adam Wells
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-01-25 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A ruby machine learning gem
14
+ email: adamwellsdev@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/ruby_ml.rb
20
+ homepage: ''
21
+ licenses:
22
+ - MIT
23
+ metadata: {}
24
+ post_install_message:
25
+ rdoc_options: []
26
+ require_paths:
27
+ - lib
28
+ required_ruby_version: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ required_rubygems_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ requirements: []
39
+ rubyforge_project:
40
+ rubygems_version: 2.5.1
41
+ signing_key:
42
+ specification_version: 4
43
+ summary: Hola!
44
+ test_files: []