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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 91f2fc8bce8a346c9bf69826d6fe7a83fe6d8884
4
- data.tar.gz: 25ab5fcbcc885f5f81246e2cf2849a9e8ef07a5c
3
+ metadata.gz: 8b3ba739647b73ea582c81a17ca43bff8be14ab6
4
+ data.tar.gz: 70afd3f7d9ed4d881c83a24da591b38fb9786a6d
5
5
  SHA512:
6
- metadata.gz: 3440083db1a039c579e1b9565b014959eb2ebcf2038a4fd01f4c1c5a536c14defbefe04a310627cd562a547fdc65c56b0b90d8c3f5ead2f79e474acbd069f98a
7
- data.tar.gz: f668b26e90dc3156e5aa6386e02e2c58a17e0dac6fc8370b308a0a52de35ce477e05c8715689daa0f3061638564dc1ef4e836028235f9be7e4c0fe81734948cd
6
+ metadata.gz: fb31ee07bc0f1916c565a94dfb005fb314a3377071840196b13ca9418f3a8aaaf47fdce6c60d7492015f0922f4c3dcde8538562bf6f7cb9428a7d5e9eff4bc1c
7
+ data.tar.gz: 5a21e10ab116946114b7be7a9052940f10f32ee51bfeacb8d46bad810fe15408ba4ba0dfe4f391aeca591b44fd8156ac1a6bb62d2e282be8e008c0ee81493e31
data/README.md CHANGED
@@ -64,6 +64,10 @@ Neater. Eventually all will be fully documented.
64
64
 
65
65
  Release Notes
66
66
  -------------
67
+ * `0.5.0`
68
+
69
+ Activated elitism, fixed a few mating issues.
70
+
67
71
  * `0.3.5.alpha.7`
68
72
 
69
73
  Console made functional.
@@ -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
@@ -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 = Logger.new(STDOUT)
21
- $log.level = Logger::INFO
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
@@ -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.0 ruby lib
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.0"
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-16"
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.0
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-16 00:00:00.000000000 Z
11
+ date: 2017-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: distribution