ML concepts (Regression, Classification, Clustering)
ML concepts (Regression, Classification, Clustering) Part1 Regression Regression is a supervised Learning. It is a statistical technique used in machine learning to predict continuous values . It helps understand relationships between dependent and independent variables. Example: Imagine you are a real estate agent and want to predict the price of a house based on its size. You collect data on previous sales, including house sizes (independent variable) and their prices (dependent variable). By applying regression, you can find a mathematical relationship between these two and use it to predict the price of a new house based on its size. Types of Regression Linear Regression Multiple Linear Regression Polynomial Regression Ridge & Lasso Regression Logistic Regression (used for classification, not traditional regression) Linear Regression This is the simplest form of regression where we fit a straight line to the data. The mathematical equation is: ...