<?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>simple Archives | FitNish.com</title>
	<atom:link href="https://fitnish.com/tag/simple/feed/" rel="self" type="application/rss+xml" />
	<link>https://fitnish.com/tag/simple/</link>
	<description>Fitness, Motivational Site And Community! &#124; Bodybuilding, Calisthenics, Vegetarian +</description>
	<lastBuildDate>Sun, 29 Dec 2019 14:09:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</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>
		
		<dc:creator><![CDATA[FitNish.com]]></dc:creator>
		<pubDate>Thu, 12 Jul 2018 08:26:02 +0000</pubDate>
				<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 href="https://fitnish.com/simple-definition-explanation-machine-learning/">Tech Blog: A Simple Definition And Explanation For Machine Learning</a> appeared first on <a 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/17.0.2/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 fetchpriority="high" decoding="async" 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 decoding="async" 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 decoding="async" 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 loading="lazy" decoding="async" 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="auto, (max-width: 320px) 100vw, 320px" /></a></div>
<div class="col-lg-6"><a href="https://fitnish.com/started-learnt-edit-create-videos/"><img loading="lazy" decoding="async" 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 loading="lazy" decoding="async" 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="auto, (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 loading="lazy" decoding="async" 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>
<p>The post <a href="https://fitnish.com/simple-definition-explanation-machine-learning/">Tech Blog: A Simple Definition And Explanation For Machine Learning</a> appeared first on <a 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>
		<item>
		<title>On The Go, Nutritious And Healthy Breakfast &#8211; Choc Banana Pancake/Pizza</title>
		<link>https://fitnish.com/on-the-go-nutritious-and-healthy-breakfast-choc-banana-pancakepizza/</link>
					<comments>https://fitnish.com/on-the-go-nutritious-and-healthy-breakfast-choc-banana-pancakepizza/#respond</comments>
		
		<dc:creator><![CDATA[FitNish.com]]></dc:creator>
		<pubDate>Mon, 02 Sep 2013 06:25:05 +0000</pubDate>
				<category><![CDATA[Recipes]]></category>
		<category><![CDATA[chocolate pancake]]></category>
		<category><![CDATA[healthy]]></category>
		<category><![CDATA[high protein pancake]]></category>
		<category><![CDATA[high protein pizza]]></category>
		<category><![CDATA[muscle building nutrients]]></category>
		<category><![CDATA[nutritious]]></category>
		<category><![CDATA[On The Go Nutritious And Healthy Breakfast Pancake Pizza]]></category>
		<category><![CDATA[Pancake Pizza]]></category>
		<category><![CDATA[perfect breakfast]]></category>
		<category><![CDATA[quick and tasty]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[sweet healthy pancake]]></category>
		<category><![CDATA[sweet healthy pizza]]></category>
		<guid isPermaLink="false">http://fitnish.com/?p=3064</guid>

					<description><![CDATA[<p>Do you find yourself on the go from the moment you wake up, with no time to cook or even eat breakfast? Then this recipe is perfect for you; its simple, nutritious, healthy, quick and tasty! The ideal meal to kick start your day with as it is packed with all the muscle building nutrients [&#8230;]</p>
<p>The post <a href="https://fitnish.com/on-the-go-nutritious-and-healthy-breakfast-choc-banana-pancakepizza/">On The Go, Nutritious And Healthy Breakfast &#8211; Choc Banana Pancake/Pizza</a> appeared first on <a href="https://fitnish.com">FitNish.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-3108" alt="Nutritious And Healthy Breakfast Pancake Pizza" src="http://fitnish.com/wp-content/uploads/2013/07/Nutritious-And-Healthy-Breakfast-Pancake-Pizza.jpg" width="600" height="436" srcset="https://fitnish.com/wp-content/uploads/2013/07/Nutritious-And-Healthy-Breakfast-Pancake-Pizza.jpg 600w, https://fitnish.com/wp-content/uploads/2013/07/Nutritious-And-Healthy-Breakfast-Pancake-Pizza-300x218.jpg 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></p>
<p>Do you find yourself on the go from the moment you wake up, with no time to cook or even eat breakfast? Then this recipe is perfect for you; its simple, nutritious, healthy, quick and tasty! The ideal meal to kick start your day with as it is packed with all the muscle building nutrients you need!  It is a recipe for a breakfast pancake/pizza. The reason why it is also called a pizza, is because of its shape and it can be cut up and eaten just like you would, pizza slices. It is ideal to pack in a container and eat even while you are on your way to work.</p>
<blockquote><p>These pancakes freeze well, thus you can make a few at once and keep in the fridge or freezer to use for those early mornings when rushing to work. All you have to do is place in the microwave for +- 1 minute, drizzle some honey over it, slice evenly and enjoy!</p></blockquote>
<h3>Nutritionl Profile:</h3>
<blockquote><p>Per Pancake:</p></blockquote>
<ul>
<li><strong>Protein: </strong>25 grams</li>
<li><strong>Carbohydrates:</strong> 55 grams</li>
<li><strong>Fat: </strong>17 grams</li>
<li><strong>Calories: </strong>475</li>
</ul>
<p>*Please note, you can adjust the quantity of oats as well as egg yolks to meet your own nutritional requirements.</p>
<p>The post <a href="https://fitnish.com/on-the-go-nutritious-and-healthy-breakfast-choc-banana-pancakepizza/">On The Go, Nutritious And Healthy Breakfast &#8211; Choc Banana Pancake/Pizza</a> appeared first on <a href="https://fitnish.com">FitNish.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://fitnish.com/on-the-go-nutritious-and-healthy-breakfast-choc-banana-pancakepizza/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
