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
+34-1Lines changed: 34 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,40 @@ Key Features:
19
19
- Exceptional Speed: Blazing fast training and inference times
20
20
- Resource Efficient: Low memory usage, ideal for large datasets
21
21
22
-
## 🚀 New Major Release (v0.1.2)
22
+
## 🚀 New Major Release (v0.1.3)
23
+
The `SEFR` classifier uses kernels to solve non-linear problems. Kernels work by projecting data into a different perspective, allowing a simple linear model to capture complex, curved patterns.
24
+
25
+
---
26
+
27
+
### Linear Kernel
28
+
29
+
This is the default setting and performs no transformation. It's the fastest option and works best when the data is already simple and doesn't require complex boundaries.
30
+
31
+
---
32
+
33
+
### Polynomial Kernel
34
+
35
+
This kernel creates feature interactions to model curved or complex relationships in the data.
36
+
37
+
***`degree`**: Sets the complexity of the feature combinations.
38
+
***`coef0`**: Balances the influence between high-degree and low-degree feature interactions.
39
+
40
+
---
41
+
42
+
### RBF Kernel
43
+
44
+
A powerful and flexible kernel that can handle very complex boundaries. It works by considering the distance between data points, making it a strong general-purpose choice.
45
+
46
+
***`gamma`**: Controls the reach of a single training point's influence. Small values create smoother boundaries, while large values create more complex ones.
47
+
48
+
---
49
+
50
+
### Sigmoid Kernel
51
+
52
+
Inspired by neural networks, this kernel is useful for certain classification tasks that follow a sigmoid shape.
53
+
54
+
***`gamma`**: Scales the data's influence.
55
+
***`coef0`**: Shifts the decision boundary.## 🚀 New Major Release (v0.1.2)
23
56
Version 0.1.2 of **LinearBoost Classifier** is released. Here are the changes:
24
57
25
58
- The codebase is refactored into a new structure.
0 commit comments