neuroevo 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (7) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +2 -0
  3. data/LICENSE +21 -0
  4. data/README.md +12 -0
  5. data/lib/neuroevo.rb +12 -0
  6. data/neuroevo.gemspec +39 -0
  7. metadata +98 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: bddcdd0b271e1648b4a7a7b395b0abc9396ac065
4
+ data.tar.gz: 4c876b2af79631727f52778cffcc34f21c341345
5
+ SHA512:
6
+ metadata.gz: efb97ef2da1283b0f4e8b7542786a3764cccabb29a740ded9d1d92cb009309a552b168a96eab999a018788eeea2a9afaed3c28785938c82286e62412f2dcc2bd
7
+ data.tar.gz: f5ef6ec092b78d609d255e7f92217b44445c58cc1ea5dc203a9625fa059fc65f2bd3be177ad31333b88e66d61cddad219aab833203d348c445df39a9a74fa311
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Naoki Nishida
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,12 @@
1
+ # [Find `neuroevo` capability in the new gem](https://github.com/giuse/machine_learning_workbench)
2
+
3
+ IMMEDIATE DEPRECATION WARNING: this gem has been deprecated.
4
+ Please find the same functionality with extended feature, better scoping and
5
+ integration to more methods in the
6
+ [`machine_learning_workbench` gem](https://github.com/giuse/machine_learning_workbench):
7
+ check out the
8
+ [nes classes](https://github.com/giuse/machine_learning_workbench/tree/master/lib/machine_learning_workbench/optimizer/natural_evolution_strategies),
9
+ [neural network classes](https://github.com/giuse/machine_learning_workbench/tree/master/lib/machine_learning_workbench/neural_network), and
10
+ [neuroevo example](https://github.com/giuse/machine_learning_workbench/blob/master/examples/neuroevolution.rb).
11
+ You should be able to transition in no time. Any problem: just ping me.
12
+ Apologies for the inconvenience, hope you will enjoy the new gem!
@@ -0,0 +1,12 @@
1
+ raise NotImplementedError, %Q[\
2
+ IMMEDIATE DEPRECATION WARNING: this gem has been deprecated.
3
+ Please find the same functionality with extended feature, better scoping and
4
+ integration to more methods in the
5
+ [`machine_learning_workbench` gem](https://github.com/giuse/machine_learning_workbench):
6
+ check out the
7
+ [nes classes](https://github.com/giuse/machine_learning_workbench/tree/master/lib/machine_learning_workbench/optimizer/natural_evolution_strategies),
8
+ [neural network classes](https://github.com/giuse/machine_learning_workbench/tree/master/lib/machine_learning_workbench/neural_network), and
9
+ [neuroevo example](https://github.com/giuse/machine_learning_workbench/blob/master/examples/neuroevolution.rb).
10
+ You should be able to transition in no time. Any problem: just ping me.
11
+ Apologies for the inconvenience, hope you will enjoy the new gem!
12
+ ]
@@ -0,0 +1,39 @@
1
+ DEPRECATION_NOTICE = %Q[\
2
+ IMMEDIATE DEPRECATION WARNING: this gem has been deprecated.
3
+
4
+ Please find the same functionality with extended feature, better scoping and
5
+ integration to more methods in the
6
+ [`machine_learning_workbench` gem](https://github.com/giuse/machine_learning_workbench):
7
+ check out the
8
+ [nes classes](https://github.com/giuse/machine_learning_workbench/tree/master/lib/machine_learning_workbench/optimizer/natural_evolution_strategies),
9
+ [neural network classes](https://github.com/giuse/machine_learning_workbench/tree/master/lib/machine_learning_workbench/neural_network), and
10
+ [neuroevo example](https://github.com/giuse/machine_learning_workbench/blob/master/examples/neuroevolution.rb).
11
+ You should be able to transition in no time. Any problem: just ping me.
12
+ Apologies for the inconvenience, hope you will enjoy the new gem!
13
+ ].gsub(' ', '')
14
+
15
+ Gem::Specification.new do |s|
16
+ s.name = 'neuroevo'
17
+ s.version = `git describe`
18
+ s.platform = Gem::Platform::RUBY
19
+ s.author = 'Giuseppe Cuccu'
20
+ s.email = 'giuseppe.cuccu@gmail.com'
21
+ s.summary = "Neuroevolution in Ruby."
22
+ s.description = DEPRECATION_NOTICE
23
+
24
+ s.homepage = 'https://github.com/giuse/neuroevo'
25
+ s.license = 'MIT'
26
+ s.post_install_message = DEPRECATION_NOTICE
27
+
28
+ s.rubyforge_project = "neuroevo" # required for validation
29
+ s.files = `git ls-files -z`.split("\x0")
30
+ # s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
31
+ # s.extensions = "ext/extconf.rb" # C extensions
32
+ s.test_files = s.files.grep(%r[^(spec)/])
33
+ s.required_ruby_version = '~> 2.0'
34
+
35
+ # Install
36
+ s.add_development_dependency 'bundler', '~> 1.12'
37
+ s.add_development_dependency 'rake', '~> 11.1'
38
+
39
+ end
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: neuroevo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.6.0
5
+ platform: ruby
6
+ authors:
7
+ - Giuseppe Cuccu
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-03-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '11.1'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '11.1'
41
+ description: |
42
+ IMMEDIATE DEPRECATION WARNING: this gem has been deprecated.
43
+
44
+ Please find the same functionality with extended feature, better scoping and
45
+ integration to more methods in the
46
+ [`machine_learning_workbench` gem](https://github.com/giuse/machine_learning_workbench):
47
+ check out the
48
+ [nes classes](https://github.com/giuse/machine_learning_workbench/tree/master/lib/machine_learning_workbench/optimizer/natural_evolution_strategies),
49
+ [neural network classes](https://github.com/giuse/machine_learning_workbench/tree/master/lib/machine_learning_workbench/neural_network), and
50
+ [neuroevo example](https://github.com/giuse/machine_learning_workbench/blob/master/examples/neuroevolution.rb).
51
+ You should be able to transition in no time. Any problem: just ping me.
52
+ Apologies for the inconvenience, hope you will enjoy the new gem!
53
+ email: giuseppe.cuccu@gmail.com
54
+ executables: []
55
+ extensions: []
56
+ extra_rdoc_files: []
57
+ files:
58
+ - Gemfile
59
+ - LICENSE
60
+ - README.md
61
+ - lib/neuroevo.rb
62
+ - neuroevo.gemspec
63
+ homepage: https://github.com/giuse/neuroevo
64
+ licenses:
65
+ - MIT
66
+ metadata: {}
67
+ post_install_message: |
68
+ IMMEDIATE DEPRECATION WARNING: this gem has been deprecated.
69
+
70
+ Please find the same functionality with extended feature, better scoping and
71
+ integration to more methods in the
72
+ [`machine_learning_workbench` gem](https://github.com/giuse/machine_learning_workbench):
73
+ check out the
74
+ [nes classes](https://github.com/giuse/machine_learning_workbench/tree/master/lib/machine_learning_workbench/optimizer/natural_evolution_strategies),
75
+ [neural network classes](https://github.com/giuse/machine_learning_workbench/tree/master/lib/machine_learning_workbench/neural_network), and
76
+ [neuroevo example](https://github.com/giuse/machine_learning_workbench/blob/master/examples/neuroevolution.rb).
77
+ You should be able to transition in no time. Any problem: just ping me.
78
+ Apologies for the inconvenience, hope you will enjoy the new gem!
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - "~>"
85
+ - !ruby/object:Gem::Version
86
+ version: '2.0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubyforge_project: neuroevo
94
+ rubygems_version: 2.6.11
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: Neuroevolution in Ruby.
98
+ test_files: []