-
Notifications
You must be signed in to change notification settings - Fork 8
/
MAChineLearning.podspec
63 lines (34 loc) · 3.1 KB
/
MAChineLearning.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "MAChineLearning"
s.version = "1.0.5"
s.summary = "Machine Learning for the Mac and iOS."
s.description = <<-DESC
MAChineLearning is framework that provides a quick and easy way to experiment Machine Learning with
native code on the Mac and iOS, with some specific support for Natural Language Processing.
It is written in Objective-C, but it is compatible by Swift.
Currently the framework supports:
* Neural Networks
* Bag of Words
* Word Vectors
Differently than many other machine learning libraries for macOS and iOS, MAChineLearning includes full training implementation
for its neural networks. You don't need a separate language or another framework to train the network, you have all you need here.
DESC
s.homepage = "https://github.com/gianlucabertani/MAChineLearning"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => 'BSD 2.0', :file => 'LICENSE' }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Gianluca Bertani" => "gianluca.bertani@email.it" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.macos.deployment_target = "10.9"
s.ios.deployment_target = "8.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/gianlucabertani/MAChineLearning.git",
:tag => s.version.to_s }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "MAChineLearning/**/*.{h,m}"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.frameworks = "Accelerate"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
end