rubyneat 0.5.0 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/lib/rubyneat/cli/main.rb +1 -0
- data/lib/rubyneat/rubyneat.rb +4 -6
- data/rubyneat.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b3ba739647b73ea582c81a17ca43bff8be14ab6
|
4
|
+
data.tar.gz: 70afd3f7d9ed4d881c83a24da591b38fb9786a6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb31ee07bc0f1916c565a94dfb005fb314a3377071840196b13ca9418f3a8aaaf47fdce6c60d7492015f0922f4c3dcde8538562bf6f7cb9428a7d5e9eff4bc1c
|
7
|
+
data.tar.gz: 5a21e10ab116946114b7be7a9052940f10f32ee51bfeacb8d46bad810fe15408ba4ba0dfe4f391aeca591b44fd8156ac1a6bb62d2e282be8e008c0ee81493e31
|
data/README.md
CHANGED
data/lib/rubyneat/cli/main.rb
CHANGED
@@ -30,6 +30,7 @@ module RubyNEAT
|
|
30
30
|
|
31
31
|
class Main < Thor
|
32
32
|
class_option :verbose, type: :numeric, banner: '[1|2|3]', aliases: '-v'
|
33
|
+
class_option :logging, type: :string, banner: '[info|warn|err|debug]', aliases: ['--log', '-l']
|
33
34
|
|
34
35
|
desc 'list <type>', 'List the requested type.'
|
35
36
|
subcommand 'list', List
|
data/lib/rubyneat/rubyneat.rb
CHANGED
@@ -11,14 +11,12 @@ require 'queue_ding'
|
|
11
11
|
|
12
12
|
The RubyNEAT system incorporates the basis of the NEAT algorithm. Flexibility
|
13
13
|
is the key here, allowing RubyNEAT to be leverage in a variety of applications.
|
14
|
-
|
15
|
-
=== Requirements
|
16
|
-
We make no effort to support Ruby versions less than 2.0.0. I know this will
|
17
|
-
be a problem to some, but you are strongly urged to upgrade.
|
18
14
|
=end
|
19
15
|
|
20
|
-
$log
|
21
|
-
$log
|
16
|
+
if $log.nil?
|
17
|
+
$log = Logger.new(STDOUT)
|
18
|
+
$log.level = Logger::INFO
|
19
|
+
end
|
22
20
|
AwesomePrint.defaults = { plain: true }
|
23
21
|
|
24
22
|
=begin rdoc
|
data/rubyneat.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: rubyneat 0.5.
|
5
|
+
# stub: rubyneat 0.5.2 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "rubyneat".freeze
|
9
|
-
s.version = "0.5.
|
9
|
+
s.version = "0.5.2"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib".freeze]
|
13
13
|
s.authors = ["Fred Mitchell".freeze]
|
14
|
-
s.date = "2017-04-
|
14
|
+
s.date = "2017-04-18"
|
15
15
|
s.description = "\n RubyNEAT -- Neural Evolution of Augmenting Topologies for Ruby.\n By way of an enhanced form of Genetic Algorithms -- the NEAT algorithm,\n populations of neural nets are evolved to handle pre-defined goals.\n\n RubyNEAT is the first implementation of the NEAT algorithm for Ruby, and\n it leverages Ruby's power to implement the NEAT algorithm in a way that would\n be difficult to do in other languages. The 'activation function' is largely\n standalone. Basically, activation is achieved by functional programming.\n\n Meaning, once your network is evolved, you can extract it as source code you\n can then utilize without the RubyNEAT engine.\n\n RubyNEAT can be used for nearly any Machine Learning task you can dream of,\n because it's also extensible and modular. See http://rubyneat.com for the\n details.\n ".freeze
|
16
16
|
s.email = "lordalveric@yahoo.com".freeze
|
17
17
|
s.executables = ["neat".freeze]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubyneat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fred Mitchell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-04-
|
11
|
+
date: 2017-04-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: distribution
|