<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>machine learning &#8211; FitNish.com</title>
	<atom:link href="https://fitnish.com/tag/machine-learning/feed/" rel="self" type="application/rss+xml" />
	<link>https://fitnish.com</link>
	<description>Fitness, Motivational Site And Community! &#124; Bodybuilding, Calisthenics, Vegetarian +</description>
	<lastBuildDate>
	Fri, 24 Apr 2026 07:12:05 +0000	</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.1.18</generator>
	<item>
		<title>Tech Blog: A Simple Definition And Explanation For Machine Learning</title>
		<link>https://fitnish.com/simple-definition-explanation-machine-learning/</link>
				<comments>https://fitnish.com/simple-definition-explanation-machine-learning/#comments</comments>
				<pubDate>Thu, 12 Jul 2018 08:26:02 +0000</pubDate>
		<dc:creator><![CDATA[FitNish.com]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[computer science]]></category>
		<category><![CDATA[information technology]]></category>
		<category><![CDATA[machine learning]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">https://fitnish.com/?p=15190</guid>
				<description><![CDATA[<p>When a non technical person, (and even most technical people actually), who have heard about &#8216;machine learning&#8217;&#160;but have never really delved into it, hears the term &#8216;machine learning&#8217;, they usually think of Artificial Intelligence and sophisticated algorithms, or basically translates it to &#8216;computers that can learn about our behaviors&#8217;. Or something along those lines, but [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://fitnish.com/simple-definition-explanation-machine-learning/">Tech Blog: A Simple Definition And Explanation For Machine Learning</a> appeared first on <a rel="nofollow" href="https://fitnish.com">FitNish.com</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>When a non technical person, (and even most technical people actually), who have heard about <em>&#8216;machine learning&#8217;&nbsp;</em>but have never really delved into it, hears the term &#8216;machine learning&#8217;, they usually think of Artificial Intelligence and sophisticated algorithms, or basically translates it to &#8216;computers that can learn about our behaviors&#8217;. Or something along those lines, but how exactly does it work?</p>
<blockquote><p><span style="color: #1185f2;">Machine learning is a buzz word, mention it and maybe you can sound cool, though don&#8217;t get me wrong, it is pretty cool, but what&#8217;s even cooler is actually understanding what it means and how it works. Often times it is over complicated with deep explanations leaving you more confused than you were before.</span></p></blockquote>
<p>I recently came across an article by <a href="https://medium.freecodecamp.org/@ykdojo">YK Sugi</a>&nbsp;titled:</p>
<ul>
<li><a href="https://medium.freecodecamp.org/what-can-you-do-with-python-the-3-main-applications-518db9a68a78">What exactly can you do with Python? Here are Python’s 3 main applications.</a></li>
</ul>
<p>In that article he gives a great explanation to what machine learning is, and provides a really nice and straight forward example to illustrate it, clearing up any confusion you may have. That bit of the article is below; to read the full article click on the link above <img src="https://s.w.org/images/core/emoji/11.2.0/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>&nbsp;</p>
<blockquote><p><span style="color: #1185f2;">First of all, let’s review what machine learning is.</span></p></blockquote>
<p>I think the best way to explain what machine learning is would be to give you a simple example.</p>
<p>Let’s say you want to develop a program that automatically detects what’s in a picture. So, given this picture below (Picture 1), you want your program to recognize that it’s a dog.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-full wp-image-15252" src="https://fitnish.com/wp-content/uploads/2018/07/sarandy-westfall-603305-unsplash.jpg" alt="pug cute dog" width="700" height="868"></p>
<p>&nbsp;</p>
<p>Given this other one below (Picture 2), you want your program to recognize that it’s a table.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-full wp-image-15253" src="https://fitnish.com/wp-content/uploads/2018/07/ali-yahya-270128-unsplash.jpg" alt="table" width="800" height="533"></p>
<p>&nbsp;</p>
<p>You might say, well, I can just write some code to do that. For example, maybe if there are a lot of light brown pixels in the picture, then we can say that it’s a dog.</p>
<p>Or maybe, you can figure out how to detect edges in a picture. Then, you might say, if there are many straight edges, then it’s a table.</p>
<p>However, this kind of approach gets tricky pretty quickly. What if there’s a white dog in the picture with no brown hair? What if the picture shows only the round parts of the table?</p>
<blockquote><p><span style="color: #1185f2;">This is where machine learning comes in. Machine learning typically implements an algorithm that automatically detects a pattern in the given input.</span></p></blockquote>
<p>You can give, say, 1,000 pictures of a dog and 1,000 pictures of a table to a machine learning algorithm. Then, it will learn the difference between a dog and a table. When you give it a new picture of either a dog or a table, it will be able to recognize which one it is.</p>
<p>I think this is somewhat similar to how a baby learns new things. How does a baby learn that one thing looks like a dog and another a table? Probably from a bunch of examples.</p>
<p>You probably don’t explicitly tell a baby, “If something is furry and has light brown hair, then it’s probably a dog.” You would probably just say, “That’s a dog. This is also a dog. And this one is a table. That one is also a table.”</p>
<p>Machine learning algorithms work much the same way.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-full wp-image-15254" src="https://fitnish.com/wp-content/uploads/2018/07/luca-bravo-217276-unsplash.jpg" alt="A Simple Definition And Explanation For Machine Learning" width="650" height="450"></p>
<p>&nbsp;</p>
<p>You can apply the same idea to:</p>
<ul>
<li>Recommendation systems (think YouTube, Amazon, and Netflix)</li>
<li>Face recognition</li>
<li>Voice recognition</li>
<li>Among other applications.</li>
</ul>
<p>Popular machine learning algorithms you might have heard about include:</p>
<ul>
<li>Neural networks</li>
<li>Deep learning</li>
<li>Support vector machines</li>
<li>Random forest</li>
<li>You can use any of the above algorithms to solve the picture-labeling problem I explained earlier.</li>
</ul>
<p>&nbsp;</p>
<blockquote><p><span style="color: #1185f2;">I hope that clears up any confusion you may have had before. Now when you mention that cool term &#8216;Machine learning&#8217;, you can back it up with a great and simple explanation!</span></p></blockquote>
<h3>Photos by:</h3>
<ul>
<li><a href="https://unsplash.com/photos/VYcDFMSkUAA?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Sarandy westfall</a>&nbsp;</li>
<li><a href="https://unsplash.com/photos/XJXWbfSo2f0?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Luca Bravo</a>&nbsp;</li>
<li><a href="https://unsplash.com/photos/hND1OG3q67k?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Lukas</a></li>
<li><a href="https://unsplash.com/photos/Dwd9B7dZdt4?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Ali Yahya</a>&nbsp;on&nbsp;<a href="https://unsplash.com/?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText">Unsplash</a></li>
</ul>
<p>&nbsp;<br />
&nbsp;</p>
<h3 style="text-align: center; font-family: Optima;"><strong>You May Also Like:</strong></h3>
<div class="row">
<div class="col-lg-6"><a href="https://fitnish.com/brazilian-fitness-model-wbff-pro-gabi-castrovinci-training-clips-pictures/" target="_blank" rel="noopener noreferrer"><img class="alignnone wp-image-6278" title="Brazilian Fitness Model &amp; WBFF Pro, Gabi Castrovinci | Training Clips | Pictures" src="https://fitnish.com/wp-content/uploads/2014/11/Gabi-feat-300x207.jpg" alt="Brazilian Fitness Model &amp; WBFF Pro, Gabi Castrovinci | Training Clips | Pictures" width="320" height="222" srcset="https://fitnish.com/wp-content/uploads/2014/11/Gabi-feat-300x207.jpg 300w, https://fitnish.com/wp-content/uploads/2014/11/Gabi-feat.jpg 650w" sizes="(max-width: 320px) 100vw, 320px" /></a></div>
<div class="col-lg-6"><a href="https://fitnish.com/started-learnt-edit-create-videos/"><img class="alignnone wp-image-14548" title="How I Started And Learnt To Edit And Create Videos" src="https://fitnish.com/wp-content/uploads/2018/02/video-small-feat.jpg" alt="How I Started And Learnt To Edit And Create Videos" width="320" height="222"></a></div>
</div>
<div class="row">
<div class="col-lg-6"><a href="https://fitnish.com/dawyne-the-rock-johnson-motivation-posters-quotes/" target="_blank" rel="noopener noreferrer"><img class="alignnone wp-image-7148" title="Dawyne 'THE ROCK' Johnson Motivation | Posters &amp; Quotes" src="https://fitnish.com/wp-content/uploads/2015/05/rockfeat-300x207.jpg" alt="Dawyne 'THE ROCK' Johnson Motivation | Posters &amp; Quotes" width="320" height="222" srcset="https://fitnish.com/wp-content/uploads/2015/05/rockfeat-300x207.jpg 300w, https://fitnish.com/wp-content/uploads/2015/05/rockfeat.jpg 650w" sizes="(max-width: 320px) 100vw, 320px" /></a></div>
<div class="col-lg-6"><a href="https://fitnish.com/cheaper-action-camera-just-go-go-pro/" target="_blank" rel="noopener noreferrer"><img class="alignnone wp-image-14626" title="Cheaper Action Camera Or Just Go For A Go Pro?" src="https://fitnish.com/wp-content/uploads/2018/02/cameraFeatsmall.jpg" alt="Cheaper Action Camera Or Just Go For A Go Pro?" width="320" height="222"></a></div>
</div>
<h3>Related Images:</h3> [<a href="https://fitnish.com/simple-definition-explanation-machine-learning/">See image gallery at fitnish.com</a>] <p>The post <a rel="nofollow" href="https://fitnish.com/simple-definition-explanation-machine-learning/">Tech Blog: A Simple Definition And Explanation For Machine Learning</a> appeared first on <a rel="nofollow" href="https://fitnish.com">FitNish.com</a>.</p>
]]></content:encoded>
							<wfw:commentRss>https://fitnish.com/simple-definition-explanation-machine-learning/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
							</item>
	</channel>
</rss>
