ruby_linear_regression 0.1.1 → 0.1.2
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.
- checksums.yaml +4 -4
- metadata +8 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c4a942f9cdf052124b34dbd82121c6e23c594876
|
|
4
|
+
data.tar.gz: f8a9df1f5bad4dff0879aec24a96eab9c3b37eb9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55debbd4791148263d13a023c56e4cfef83cdf8e0c120e70ee95efa537ff5abe340e84113eed672a465cbe822647ca7a1b2744568fa13ac473206276bf2c878e
|
|
7
|
+
data.tar.gz: a538ba98fa89db3610f54140bd4de6a38f28ff96c997b18a047ae8e057c6b838e38d718c50fa3eb9b00ea88630e9fd85f9417aaeecc0f4d6a104abd14e108592
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_linear_regression
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Soren Blond Daugaard
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-06-
|
|
11
|
+
date: 2017-06-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: minitest
|
|
@@ -30,14 +30,11 @@ dependencies:
|
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 5.10.2
|
|
33
|
-
description:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
is implemented in pure ruby using Ruby's Matrix implementation.\n\n An example
|
|
39
|
-
of how to use the library can be found in the blog post: [Implementing linear regressing
|
|
40
|
-
using Ruby](http://www.practicalai.io/implementing-linear-regression-using-ruby/). "
|
|
33
|
+
description: |-
|
|
34
|
+
An implementation of a linear regression machine learning algorithm implemented in Ruby.
|
|
35
|
+
The library supports simple problems with one independent variable used to predict a dependent variable as well as multivariate problems with multiple independent variables to predict a dependent variable.
|
|
36
|
+
You can train your algorithms using the normal equation or gradient descent.
|
|
37
|
+
The library is implemented in pure ruby using Ruby's Matrix implementation.
|
|
41
38
|
email: sbd@ineptum.dk
|
|
42
39
|
executables: []
|
|
43
40
|
extensions: []
|
|
@@ -64,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
64
61
|
version: '0'
|
|
65
62
|
requirements: []
|
|
66
63
|
rubyforge_project:
|
|
67
|
-
rubygems_version: 2.
|
|
64
|
+
rubygems_version: 2.6.12
|
|
68
65
|
signing_key:
|
|
69
66
|
specification_version: 4
|
|
70
67
|
summary: Linear regression implemented in Ruby.
|