<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: sukriti-chowdhury</title>
    <description>The latest articles on DEV Community by sukriti-chowdhury (@sukritichowdhury).</description>
    <link>https://dev.to/sukritichowdhury</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3556883%2F570422a4-01a8-4663-8c0e-368de15f3bf4.png</url>
      <title>DEV Community: sukriti-chowdhury</title>
      <link>https://dev.to/sukritichowdhury</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sukritichowdhury"/>
    <language>en</language>
    <item>
      <title>WHAT.WHY.HOW? Machine Learning Series: Linear Regression Model</title>
      <dc:creator>sukriti-chowdhury</dc:creator>
      <pubDate>Fri, 10 Oct 2025 00:19:58 +0000</pubDate>
      <link>https://dev.to/sukritichowdhury/whatwhyhow-machine-learning-series-linear-regression-model-2fgo</link>
      <guid>https://dev.to/sukritichowdhury/whatwhyhow-machine-learning-series-linear-regression-model-2fgo</guid>
      <description>&lt;h2&gt;
  
  
  WHAT is a Linear Regression Model
&lt;/h2&gt;

&lt;p&gt;Linear regression is a statistical method for modelling the linear relationship between a dependent variable and one or more independent variable.&lt;br&gt;
For example, you want to predict house rent estimate (dependent variable), based on the collected data of multiple features (independent variable) such as house type, location, total area etc.&lt;/p&gt;

&lt;p&gt;• Used to predict numeric target (dependent variable).&lt;br&gt;
• &lt;strong&gt;Mathematical Form:&lt;/strong&gt; y = β0 + β1 * x1 + β2 * x2 + … + βn * xn + ε&lt;br&gt;
• &lt;strong&gt;Features/Independent Variables:&lt;/strong&gt; X = x1, x2, x3 … xn (House type, location, total area etc.)&lt;br&gt;
• &lt;strong&gt;Target/Dependent Variables:&lt;/strong&gt; y i.e. house rent estimate&lt;br&gt;
• &lt;strong&gt;Goal:&lt;/strong&gt; Goal of the model is to find the best fit coefficients (β0, β1, β, ...βn)&lt;br&gt;
• &lt;strong&gt;Assumption:&lt;/strong&gt; There might always be some error/residuals ε while predicting the target. Our end goal will be to tune and reduce the errors for the predictions.&lt;/p&gt;

&lt;h2&gt;
  
  
  WHY do we use Linear Regression Model
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Easy to implement and train:&lt;/strong&gt; Linear regression is one of the simplest and most computationally efficient machine learning algorithms. Its straightforward mathematical foundation makes it quick to train, even on large datasets.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Excellent baseline model:&lt;/strong&gt; Because of its simplicity, linear regression is often the first model to be used on a regression problem. It establishes a baseline performance that more complex algorithms can be measured against.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Limitations:&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;Too simple for complex business cases since it assumes linear relationship.&lt;/li&gt;
&lt;li&gt;Prone to overfitting due to it's simplicity.&lt;/li&gt;
&lt;li&gt;Sensitive to outliers.&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>machinelearning</category>
      <category>webdev</category>
      <category>development</category>
    </item>
  </channel>
</rss>
