Skip to content

Commit d732395

Browse files
committed
Updated to v2.2.2
1 parent 8e893f3 commit d732395

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

KRMLP.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "KRMLP"
3-
s.version = "2.2.1"
3+
s.version = "2.2.2"
44
s.summary = "Deep Learning for multi-layer perceptrons neural network (MLP)."
55
s.description = <<-DESC
66
Machine Learning (マシンラーニング) in this project, it implemented multi-layer perceptrons neural network (ニューラルネットワーク) and Back Propagation Neural Network (BPN). It designed unlimited hidden layers to do the training tasks. This network can be used in products recommendation (おすすめの商品), user behavior analysis (ユーザーの行動分析), data mining (データマイニング) and data analysis (データ分析).

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Machine Learning (マシンラーニング) in this project, it implemented mult
77

88
```ruby
99
platform :ios, '9.0'
10-
pod "KRMLP", "~> 2.2.1"
10+
pod "KRMLP", "~> 2.2.2"
1111
```
1212

1313
## How to use
@@ -185,7 +185,6 @@ mlp.networkActivation = KRMLPNetActivationSigmoid;
185185
186186
mlp.initialMaxWeight = 0.5f;
187187
mlp.initialMinWeight = -0.5f;
188-
mlp.initialOptimize = YES;
189188
190189
[mlp addPatternsFromArray:patterns];
191190
[mlp setupOptimizationMethod:KRMLPOptimizationFixedInertia inertialRate:0.7f];
@@ -275,7 +274,7 @@ QuickProp:
275274

276275
## Version
277276

278-
V2.2.1
277+
V2.2.2
279278

280279
## License
281280

@@ -285,5 +284,4 @@ MIT.
285284

286285
1. RMSProp.
287286
2. Adam.
288-
3. EDBD.
289-
4. Nadam.
287+
3. Nadam.

0 commit comments

Comments
 (0)