You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+45Lines changed: 45 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,3 +6,48 @@
6
6
7
7
8
8
# support-vector-machines
9
+
10
+
## How to install it?
11
+
12
+
To install support vector machines, go to the Playground (Ctrl+OW) in your [Pharo](https://pharo.org/) image and execute the following Metacello script (select it and press Do-it button or Ctrl+D):
If you are new to baselines and Metacello, check out the [Baselines](https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/Baselines.md) tutorial on Pharo Wiki.
32
+
33
+
## How to use it?
34
+
35
+
Here's an example of how to use soft margin SVM. For that, open a Playground (CMD+OW) in your Pharo image and execute this code (CMD+A) and then (CMD+PP)
model predict: testInput "an AIMatrix(1 -1 -1 -1)"
51
+
```
52
+
53
+
To understand this example and the soft margin svm in general please refer to our [Wiki](https://github.com/pharo-ai/wiki/blob/master/wiki/MachineLearning/Support-Vector-Machines.md).
0 commit comments