From 1a0540bf1e23c89216b8562b4b1a815080d7df1f Mon Sep 17 00:00:00 2001 From: Arun G Nayak <84305637+Arun9739@users.noreply.github.com> Date: Sat, 13 Aug 2022 14:48:51 +0530 Subject: [PATCH 1/2] Create README.md --- Arun_G_Nayak_ML/README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 Arun_G_Nayak_ML/README.md diff --git a/Arun_G_Nayak_ML/README.md b/Arun_G_Nayak_ML/README.md new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/Arun_G_Nayak_ML/README.md @@ -0,0 +1 @@ + From 1c22aa3450c20d6616081a87d6e026b72f106d47 Mon Sep 17 00:00:00 2001 From: Arun G Nayak <84305637+Arun9739@users.noreply.github.com> Date: Sat, 13 Aug 2022 15:17:49 +0530 Subject: [PATCH 2/2] Update README.md --- Arun_G_Nayak_ML/README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/Arun_G_Nayak_ML/README.md b/Arun_G_Nayak_ML/README.md index 8b1378917..58b0ddb65 100644 --- a/Arun_G_Nayak_ML/README.md +++ b/Arun_G_Nayak_ML/README.md @@ -1 +1,26 @@ +## Linear Regression + +- Linear Regression is a machine learning algorithm based on supervised learning. It performs a regression task. Regression models a target prediction value based on independent variables. It is mostly used for finding out the relationship between variables. + +- Linear regression performs the task to predict a dependent variable value (y) based on a given independent variable (x). So, this regression technique finds out a linear relationship between x (input) and y(output). Hence, the name is Linear Regression. + +## Unsupervised learning + +- Unsupervised learning is a type of machine learning in which models are trained using unlabeled dataset and are allowed to act on that data without any supervision. + +Types of unsupervised learning : + +- Clustering: Clustering is a method of grouping the objects into clusters such that objects with most similarities remains into a group and has less or no similarities with the objects of another group. Cluster analysis finds the commonalities between the data objects and categorizes them as per the presence and absence of those commonalities. + +- Association: An association rule is an unsupervised learning method which is used for finding the relationships between variables in the large database. It determines the set of items that occurs together in the dataset. Association rule makes marketing strategy more effective. + +## Under fitting and Over fitting + +- A statistical model or a machine learning algorithm is said to have underfitting when it cannot capture the underlying trend of the data, i.e., it only performs well on training data but performs poorly on testing data. + +- A statistical model is said to be overfitted when the model does not make accurate predictions on testing data. When a model gets trained with so much data, it starts learning from the noise and inaccurate data entries in our data set. + + +Arun G Nayak +(nayakarun02@gmail.com)