himanshu-03 / Python-Data-Structures

A compilation of Data Structures in Python. It is a collection of Python code examples and implementations of various data structures. This repository aims to provide a comprehensive resource for understanding and utilizing different data structures efficiently in Python.
MIT License
18 stars 27 forks source link

add: Logistic Regression #101

Closed adi271001 closed 11 months ago

adi271001 commented 11 months ago

Describe the algorithm/code

Logistic regression is a supervised machine learning algorithm mainly used for classification tasks where the goal is to predict the probability that an instance of belonging to a given class. It is used for classification algorithms its name is logistic regression. it’s referred to as regression because it takes the output of the linear regression function as input and uses a sigmoid function to estimate the probability for the given class. PLease assign this to me under hacktoberfest tag

Do you want to work on this feature?

himanshu-03 commented 11 months ago

Hi @adi271001! 👋🏻 You can start working on this issue! Do let me know if you need any help. ✨

adi271001 commented 11 months ago

created pull request and added codes