iiitl / Classification

Classification
MIT License
0 stars 13 forks source link

Implemented RandomizedSearchCV #1 #21

Closed NeonKazuha closed 8 months ago

NeonKazuha commented 8 months ago

RandomizedSearchCV is used instead of GridSeachCV as it is much faster and less computationally expensive.

  1. Created a Hyperparameters Grid.
    • Logistic Regression:
    • logisticregression__C: This key defines the regularization parameter (C) for logistic regression.
    • logisticregression__solver: This key specifies the solver algorithm for logistic regression.
    • Support Vector Machine:
    • svc__C: Key defines the regularization parameter (C) for SVM.
    • svc__kernel: This key defines the kernel function used by the SVM.
    • svc__gamma: It defines the gamma parameter that controls the influence of training points on the decision boundary.

Screenshot 2024-03-16 034225

Screenshot 2024-03-16 040402

NeonKazuha commented 8 months ago

@darshbaxi Please Review.

Samcoding5854 commented 8 months ago

Great work. Could have used more models to see more possibilities.