@@ -55,60 +55,60 @@ Before you begin, you will need the following:
55
55
### SKLearnRandomForestClassifier Component:
56
56
Initializes a RandomForestClassifier for high-accuracy classification tasks, using specified or default parameters.
57
57
58
- <p align = " center " >< img src =" https://github.com/user-attachments/assets/93489276-7c1d-4db1-ab9c-25ca6b027f0b " alt =" SKLearnRandomForestClassifier " width =" 200 " height =" 75 " />
58
+ <img src =" https://github.com/user-attachments/assets/93489276-7c1d-4db1-ab9c-25ca6b027f0b " alt =" SKLearnRandomForestClassifier " width =" 200 " height =" 75 " />
59
59
60
60
#### SKLearnLogisticRegression Component:
61
61
Initializes a LogisticRegression model, widely used for binary classification and multiclass tasks using a one-vs-rest strategy.
62
62
63
- <p align = " center " >< img src =" https://github.com/user-attachments/assets/c44b7bf7-3126-45db-875e-3fcc85d1a863 " alt =" SKLearnLogisticRegression " width =" 200 " height =" 75 " />
63
+ <img src =" https://github.com/user-attachments/assets/c44b7bf7-3126-45db-875e-3fcc85d1a863 " alt =" SKLearnLogisticRegression " width =" 200 " height =" 75 " />
64
64
65
65
66
66
### SKLearnSVC Component:
67
67
Initializes an Support Vector Classifier (SVC), effective in high-dimensional spaces and suitable for cases with more features than samples.
68
68
69
- <p align = " center " >< img src =" https://github.com/user-attachments/assets/c22f156a-9556-40be-93e2-576f6a0f9879 " alt =" SKLearnSVC " width =" 200 " height =" 75 " />
69
+ <img src =" https://github.com/user-attachments/assets/c22f156a-9556-40be-93e2-576f6a0f9879 " alt =" SKLearnSVC " width =" 200 " height =" 75 " />
70
70
71
71
72
72
### SKLearnKNeighborsClassifier Component:
73
73
Initializes a KNeighborsClassifier, an instance-based learning model that classifies data based on stored training instances without building a generalized model.
74
74
75
- <p align = " center " >< img src =" https://github.com/user-attachments/assets/b9ba11f9-0679-4bc1-ac66-db89ee620d4a " alt =" SKLearnKNeighborsClassifier " width =" 200 " height =" 75 " />
75
+ <img src =" https://github.com/user-attachments/assets/b9ba11f9-0679-4bc1-ac66-db89ee620d4a " alt =" SKLearnKNeighborsClassifier " width =" 200 " height =" 75 " />
76
76
77
77
78
78
### SKLearnDecisionTreeClassifier Component:
79
79
Initializes a DecisionTreeClassifier, a versatile model for classification and regression that uses a tree structure to make decisions through yes/no questions.
80
80
81
- <p align = " center " >< img src =" https://github.com/user-attachments/assets/781dddf4-1d5e-4794-a3f7-59a961b4eba8 " alt =" SKLearnDecisionTreeClassifier " width =" 200 " height =" 75 " />
81
+ <img src =" https://github.com/user-attachments/assets/781dddf4-1d5e-4794-a3f7-59a961b4eba8 " alt =" SKLearnDecisionTreeClassifier " width =" 200 " height =" 75 " />
82
82
83
83
84
84
### SKLearnGradientBoostingClassifier Component:
85
85
Initializes a GradientBoostingClassifier that builds models additively in stages, optimizing differentiable loss functions for improved accuracy.
86
86
87
- <p align = " center " >< img src =" https://github.com/user-attachments/assets/4db62a79-4f1a-4662-8e51-bea5b1639395 " alt =" SKLearnGradientBoostingClassifier " width =" 200 " height =" 75 " />
87
+ <img src =" https://github.com/user-attachments/assets/4db62a79-4f1a-4662-8e51-bea5b1639395 " alt =" SKLearnGradientBoostingClassifier " width =" 200 " height =" 75 " />
88
88
89
89
90
90
### SKLearnSVR Component:
91
91
Initializes a Support Vector Regression (SVR) model, applying Support Vector Machines (SVM) principles to regression with customizable kernels for handling complex datasets.
92
92
93
- <p align = " center " >< img src =" https://github.com/user-attachments/assets/4a41da8a-d8a9-4702-8825-9926b7f33e44 " alt =" SKLearnSVC " width =" 200 " height =" 75 " />
93
+ <img src =" https://github.com/user-attachments/assets/4a41da8a-d8a9-4702-8825-9926b7f33e44 " alt =" SKLearnSVC " width =" 200 " height =" 75 " />
94
94
95
95
96
96
### SKLearnMultinomialNB Component:
97
97
Initializes a MultinomialNB model, ideal for discrete features like word counts and effective for multi-class text classification.
98
98
99
- <p align = " center " >< img src =" https://github.com/user-attachments/assets/570706cd-80c1-4563-8731-cea52d814e3a " alt =" SKLearnMultinomialNB " width =" 200 " height =" 75 " />
99
+ <img src =" https://github.com/user-attachments/assets/570706cd-80c1-4563-8731-cea52d814e3a " alt =" SKLearnMultinomialNB " width =" 200 " height =" 75 " />
100
100
101
101
102
102
### SKLearnRidgeRegression Component:
103
103
Initializes a Ridge Regression model that mitigates overfitting by penalizing large coefficients, enhancing the robustness of linear regression.
104
104
105
- <p align = " center " >< img src =" https://github.com/user-attachments/assets/d44db83d-56d1-4326-8115-8bd0857c1cf2 " alt =" SKLearnRidgeRegression " width =" 200 " height =" 75 " />
105
+ <img src =" https://github.com/user-attachments/assets/d44db83d-56d1-4326-8115-8bd0857c1cf2 " alt =" SKLearnRidgeRegression " width =" 200 " height =" 75 " />
106
106
107
107
108
108
### SKLearnKMeans Component:
109
109
Initializes a KMeans model, an unsupervised algorithm that partitions data into k clusters by assigning each point to the nearest cluster mean.
110
110
111
- <p align = " center " >< img src =" https://github.com/user-attachments/assets/76413bd8-e5fd-4fe7-8161-a477497e3545 " alt =" SKLearnKMeans " width =" 200 " height =" 75 " />
111
+ <img src =" https://github.com/user-attachments/assets/76413bd8-e5fd-4fe7-8161-a477497e3545 " alt =" SKLearnKMeans " width =" 200 " height =" 75 " />
112
112
113
113
## Try the Examples
114
114
0 commit comments