Skip to content

Commit d9be1c9

Browse files
authored
Update README.md
1 parent b9b4212 commit d9be1c9

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,40 @@ Key Features:
1919
- Exceptional Speed: Blazing fast training and inference times
2020
- Resource Efficient: Low memory usage, ideal for large datasets
2121

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)
2356
Version 0.1.2 of **LinearBoost Classifier** is released. Here are the changes:
2457

2558
- The codebase is refactored into a new structure.

0 commit comments

Comments
 (0)