Skip to main content

bianary_classification

Project description

this module is used to find out best parameters of desision tree. Markdown Logo

#Bianary_classification

##Aim The module aims to create a library that will help users to build trees that can help classify binary classes easily. But, it is essential to note that this module should be used after the process (cleaning, transformation, and reduction) of the data.

##Advantages 1.)Autopruneing the tree no need to hyperparameter tuneing 2.)very easy to use. 3.) Brier score to evaluate to find out best paraameter as is that it is focused on the positive class, which for imbalanced classification is the minority class. A perfect classifier has a Brier score of 0.0.

##Limitation 1.) Preprocessing must requires. 2.) do not shows good perfformance for high dimentional data ,feature reduction before use this module is adviceable. 3.)little time consumeing.

##code example :

import bianary_decision_parameter
from bianary_decision_parameter import 
from sklearn import preprocessing
from sklearn.datasets import load_breast_cancer
from sklearn.model_selection import train_test_split
Load breast_cancer dataset
split it into train and test set
da=load_breast_cancer()
X1=da.data
y1=da.target
scaled_X_1 = preprocessing.scale(X1)
X_train1, X_test1, y_train1, y_test1 = train_test_split(scaled_X_1, y1,test_size=0.3)
p2=bianary_decision_parameter('auto',X_train1,y_train1, X_test1, y_test1,1,1)
p3=bianary_decision_parameter('sqrt',X_train1,y_train1, X_test1, y_test1,1,10) 
p4=bianary_decision_parameter('log2',X_train1,y_train1, X_test1, y_test1,1,10)

p2.parameter()

	accuracy_score  missclassification 	specificity 	Recall 	precision 	depth 	ccp_alpha 	max_features
     0 	        0.912281 	0.087719 	0.912281 	0.83871 	0.912281 	2 	0.004307 	auto

Explanation

p2=bianary_decision_parameter('auto',X_train1,y_train1, X_test1, y_test1,1,1) Feature_selection = 'auto' \n class_weight = 0_class ,1_class

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bianary_decision_parameter-0.2.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

bianary_decision_parameter-0.2-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page