<?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: Rutesh Rathod</title>
    <description>The latest articles on DEV Community by Rutesh Rathod (@ruteshrathod).</description>
    <link>https://dev.to/ruteshrathod</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%2F506974%2F52e39e87-782e-4696-a404-c3a82d8ad6b4.png</url>
      <title>DEV Community: Rutesh Rathod</title>
      <link>https://dev.to/ruteshrathod</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ruteshrathod"/>
    <language>en</language>
    <item>
      <title>Finally Completed Hacktoberfest 2020</title>
      <dc:creator>Rutesh Rathod</dc:creator>
      <pubDate>Sun, 15 Nov 2020 05:29:34 +0000</pubDate>
      <link>https://dev.to/ruteshrathod/finally-completed-hacktoberfest-2020-50p1</link>
      <guid>https://dev.to/ruteshrathod/finally-completed-hacktoberfest-2020-50p1</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7pS_Fpcp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/d2txt10eb4ckbo8q8xem.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7pS_Fpcp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/d2txt10eb4ckbo8q8xem.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  First Hacktoberfest ✨✨🚀
&lt;/h3&gt;

&lt;p&gt;As I was already a member of Dev Community and also this time i had decided to participate in this Hacktoberfest event. It was really great to contribute open source projects.&lt;/p&gt;

&lt;p&gt;And yes I was really new to open source and actually this event really helped me understand and cherish the true spirit of #OpenSource Community&lt;/p&gt;

&lt;h3&gt;
  
  
  Contributions🚀
&lt;/h3&gt;

&lt;p&gt;Well there was no specific criteria for me to choose projects. As i was new to open source i grabbed most easy repo's. But here is tricky part one of Repo Maintainer was impressed with my contribution and she made me a permanant contributor of that respective project(project:-time-to-leave).&lt;/p&gt;

&lt;h3&gt;
  
  
  Reflections🙌
&lt;/h3&gt;

&lt;p&gt;My Overall experience of Hacktoberfest was damn awesome, made networking with new people, learned lot of things and also became a contributor to a opensource project.&lt;/p&gt;

</description>
      <category>hacktoberfest</category>
      <category>opensource</category>
      <category>github</category>
    </item>
    <item>
      <title>What is the parameter C, in Support Vector Machine Regression?</title>
      <dc:creator>Rutesh Rathod</dc:creator>
      <pubDate>Tue, 03 Nov 2020 12:53:14 +0000</pubDate>
      <link>https://dev.to/ruteshrathod/what-is-the-parameter-c-in-support-vector-machine-regression-53eo</link>
      <guid>https://dev.to/ruteshrathod/what-is-the-parameter-c-in-support-vector-machine-regression-53eo</guid>
      <description>&lt;h3&gt;
  
  
  While working over SVM fundamentally 2 things are considered.
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Setting a larger margin(To get a better result on test).&lt;/li&gt;
&lt;li&gt;Keeping Low Misclassification(amount of misclassification of 
data by model)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;But the problem is above both things contradict each other(inversely proportional) i.e if we increase margin its effects misclassification with a high Misclassification rate and if Margin is low which violates our basic requirement №1 but we get low misclassification rate.&lt;br&gt;
 But the thing is even we get great low misclassification rate, but the model won’t work properly over validation/unseen data.&lt;/p&gt;

&lt;blockquote&gt;
&lt;h4&gt;
  
  
  So in all this theory where does, parameter C come?
&lt;/h4&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pqDFsm0K--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/2ivacyto3nznmqwapc1o.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pqDFsm0K--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/2ivacyto3nznmqwapc1o.jpeg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Parameter C represents the size of value margin, higher the value of C Smaller the margin and lower C value means Large Margin.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Larger Margin will cover maximum data points but also it will bring the problem of wrong classifications.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Smaller Margin Will satisfy lower wrong classification but will end up with false prediction over unseen data.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;You can relate this issue with the problem of Model Over-fitting and Under-fitting.&lt;/p&gt;

&lt;p&gt;So in short C value must be given carefully because it will decide your model’s behaviour and correctness over unseen data.&lt;/p&gt;

&lt;p&gt;So what is the best value for C, well it’s all up on your model and honestly it’s all about trial and error (cross-validation), change the value and crosscheck the results.&lt;/p&gt;

&lt;p&gt;Please, Correct if am wrong or suggest me any additional points to it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;References:&lt;/strong&gt;&lt;br&gt;
     &lt;a href="https://medium.com/@pushkarmandot/what-is-the-significance-of-c-value-in-support-vector-machine-28224e852c5a"&gt;https://medium.com/@pushkarmandot/what-is-the-significance-of-c-value-in-support-vector-machine-28224e852c5a&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;PS: This post is taken from my own medium post.&lt;/em&gt;:&lt;br&gt;
     &lt;a href="https://medium.com/@rathodrutesh/what-is-parameter-c-in-support-vector-machine-regression-f75be9df98ec"&gt;https://medium.com/@rathodrutesh/what-is-parameter-c-in-support-vector-machine-regression-f75be9df98ec&lt;/a&gt;&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>svm</category>
      <category>regression</category>
    </item>
  </channel>
</rss>
