-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed deltaValue to deltaWeight.
- Loading branch information
Showing
4 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "KRMLP" | ||
s.version = "2.2.0" | ||
s.version = "2.2.1" | ||
s.summary = "Deep Learning for multi-layer perceptrons neural network (MLP)." | ||
s.description = <<-DESC | ||
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 (データ分析). | ||
|
@@ -10,7 +10,7 @@ Pod::Spec.new do |s| | |
s.author = { "Kalvar Lin" => "[email protected]" } | ||
s.social_media_url = "https://twitter.com/ilovekalvar" | ||
s.source = { :git => "https://github.com/Kalvar/ios-Multi-Perceptron-NeuralNetwork.git", :tag => s.version.to_s } | ||
s.platform = :ios, '7.0' | ||
s.platform = :ios, '9.0' | ||
s.requires_arc = true | ||
s.public_header_files = 'ML/**/*.h' | ||
s.source_files = 'ML/**/*.{h,m}' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters