<?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>neural network Archives - Petamind</title>
	<atom:link href="https://petaminds.com/tag/neural-network/feed/" rel="self" type="application/rss+xml" />
	<link>https://petaminds.com/tag/neural-network/</link>
	<description>A.I, Data and Software Engineering</description>
	<lastBuildDate>Sat, 26 Mar 2022 02:11:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://petaminds.com/wp-content/uploads/2019/09/ic_launcher.png</url>
	<title>neural network Archives - Petamind</title>
	<link>https://petaminds.com/tag/neural-network/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Advanced Keras &#8211; Custom loss functions</title>
		<link>https://petaminds.com/advanced-keras-custom-loss-functions/</link>
					<comments>https://petaminds.com/advanced-keras-custom-loss-functions/#comments</comments>
		
		<dc:creator><![CDATA[Tung Nguyen]]></dc:creator>
		<pubDate>Wed, 23 Mar 2022 00:31:00 +0000</pubDate>
				<category><![CDATA[data science]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[cost function]]></category>
		<category><![CDATA[custom loss]]></category>
		<category><![CDATA[K]]></category>
		<category><![CDATA[keras]]></category>
		<category><![CDATA[keras backend]]></category>
		<category><![CDATA[loss function]]></category>
		<category><![CDATA[neural network]]></category>
		<category><![CDATA[tensorflow]]></category>
		<guid isPermaLink="false">https://petaminds.com/?p=1391</guid>

					<description><![CDATA[<p>When working on machine learning problems, sometimes you want to construct your own custom loss function(s). This article will introduce abstract Keras backend for that purpose. Keras loss functions From Keras loss documentation, there are several built-in loss functions, e.g. mean_absolute_percentage_error, cosine_proximity, kullback_leibler_divergence etc. When compiling a Keras model, we often pass two parameters, i.e. [&#8230;]</p>
<p>The post <a href="https://petaminds.com/advanced-keras-custom-loss-functions/">Advanced Keras &#8211; Custom loss functions</a> appeared first on <a href="https://petaminds.com">Petamind</a>.</p>
]]></description>
		
					<wfw:commentRss>https://petaminds.com/advanced-keras-custom-loss-functions/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Recurrent neural network &#8211; predict monthly milk production</title>
		<link>https://petaminds.com/recurrent-neural-network-predict-monthly-milk-production/</link>
					<comments>https://petaminds.com/recurrent-neural-network-predict-monthly-milk-production/#respond</comments>
		
		<dc:creator><![CDATA[Tung Nguyen]]></dc:creator>
		<pubDate>Thu, 28 Nov 2019 20:50:24 +0000</pubDate>
				<category><![CDATA[data science]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[LSTM]]></category>
		<category><![CDATA[milk]]></category>
		<category><![CDATA[neural network]]></category>
		<category><![CDATA[production]]></category>
		<category><![CDATA[recurrent]]></category>
		<guid isPermaLink="false">https://petaminds.com/?p=1904</guid>

					<description><![CDATA[<p>In part 1, we introduced a simple RNN for time-series data. To continue, this article applies a deep version of RNN on a real dataset to predict monthly milk production. The data Monthly milk production: pounds per cow. Jan 1962 &#8211; Dec 1975. You can download the data using this link. Download: CSV file The [&#8230;]</p>
<p>The post <a href="https://petaminds.com/recurrent-neural-network-predict-monthly-milk-production/">Recurrent neural network &#8211; predict monthly milk production</a> appeared first on <a href="https://petaminds.com">Petamind</a>.</p>
]]></description>
		
					<wfw:commentRss>https://petaminds.com/recurrent-neural-network-predict-monthly-milk-production/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Recurrent neural network &#8211; time-series data- part 1</title>
		<link>https://petaminds.com/recurrent-neural-network-time-series-data-part-1/</link>
					<comments>https://petaminds.com/recurrent-neural-network-time-series-data-part-1/#comments</comments>
		
		<dc:creator><![CDATA[Tung Nguyen]]></dc:creator>
		<pubDate>Fri, 22 Nov 2019 00:09:00 +0000</pubDate>
				<category><![CDATA[data science]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[keras]]></category>
		<category><![CDATA[neural network]]></category>
		<category><![CDATA[recurrent]]></category>
		<category><![CDATA[rnn]]></category>
		<category><![CDATA[tf2]]></category>
		<category><![CDATA[time-series]]></category>
		<guid isPermaLink="false">https://petaminds.com/?p=1863</guid>

					<description><![CDATA[<p>If you are human and curious about your future, then the recurrent neural network (RNN) is definitely a tool to consider. Part 1 will demonstrate some simple RNNs using TensorFlow 2.0 and Keras functional API. What is RNN An&#160;RNN is a class of&#160;artificial neural networks&#160;where connections between nodes form a&#160;directed graph&#160;along a temporal sequence (time [&#8230;]</p>
<p>The post <a href="https://petaminds.com/recurrent-neural-network-time-series-data-part-1/">Recurrent neural network &#8211; time-series data- part 1</a> appeared first on <a href="https://petaminds.com">Petamind</a>.</p>
]]></description>
		
					<wfw:commentRss>https://petaminds.com/recurrent-neural-network-time-series-data-part-1/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Word2vec with TensorFlow 2.0 &#8211; a simple CBOW implementation</title>
		<link>https://petaminds.com/word2vec-with-tensorflow-2-0-a-simple-cbow-implementation/</link>
					<comments>https://petaminds.com/word2vec-with-tensorflow-2-0-a-simple-cbow-implementation/#comments</comments>
		
		<dc:creator><![CDATA[Tung Nguyen]]></dc:creator>
		<pubDate>Sat, 19 Oct 2019 23:30:20 +0000</pubDate>
				<category><![CDATA[data science]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[CBOW]]></category>
		<category><![CDATA[keras]]></category>
		<category><![CDATA[natural language processing]]></category>
		<category><![CDATA[neural network]]></category>
		<category><![CDATA[tenso]]></category>
		<category><![CDATA[word2vec]]></category>
		<guid isPermaLink="false">https://petaminds.com/?p=1144</guid>

					<description><![CDATA[<p>In TensorFlow website, there is a good example of word embedding implementation with Keras. Nevertheless, we are curious to see how it looks like when implementing word2vec with PURE TensorFlow 2.0. What is CBOW In the previous article, we introduced Word2vec (w2v) with Gensim library. Word2vec consists of two-layer neural networks that are trained to reconstruct linguistic [&#8230;]</p>
<p>The post <a href="https://petaminds.com/word2vec-with-tensorflow-2-0-a-simple-cbow-implementation/">Word2vec with TensorFlow 2.0 &#8211; a simple CBOW implementation</a> appeared first on <a href="https://petaminds.com">Petamind</a>.</p>
]]></description>
		
					<wfw:commentRss>https://petaminds.com/word2vec-with-tensorflow-2-0-a-simple-cbow-implementation/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>A.I in agriculture &#8211; Fruit Grading with Keras (part 2)</title>
		<link>https://petaminds.com/a-i-in-agriculture-fruit-grading-with-keras-part-2/</link>
					<comments>https://petaminds.com/a-i-in-agriculture-fruit-grading-with-keras-part-2/#respond</comments>
		
		<dc:creator><![CDATA[Tung Nguyen]]></dc:creator>
		<pubDate>Sun, 06 Oct 2019 07:05:15 +0000</pubDate>
				<category><![CDATA[data science]]></category>
		<category><![CDATA[front-end]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[deep learning]]></category>
		<category><![CDATA[fruit]]></category>
		<category><![CDATA[fruit grading]]></category>
		<category><![CDATA[keras]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[neural network]]></category>
		<category><![CDATA[tensorflow]]></category>
		<guid isPermaLink="false">https://petaminds.com/?p=994</guid>

					<description><![CDATA[<p>In part 1, we introduced fruit classification with pure python implementation. In this part, we will use the Keras library instead. What is Keras Keras&#160;is an&#160;open-sourceneural-network&#160;library written in&#160;Python. It is capable of running on top of&#160;TensorFlow,&#160;Microsoft Cognitive Toolkit,&#160;Theano, or&#160;PlaidML. Designed to enable fast experimentation with&#160;deep neural networks, it focuses on being user-friendly, modular, and extensible.&#160; [&#8230;]</p>
<p>The post <a href="https://petaminds.com/a-i-in-agriculture-fruit-grading-with-keras-part-2/">A.I in agriculture &#8211; Fruit Grading with Keras (part 2)</a> appeared first on <a href="https://petaminds.com">Petamind</a>.</p>
]]></description>
		
					<wfw:commentRss>https://petaminds.com/a-i-in-agriculture-fruit-grading-with-keras-part-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>AI in agriculture: fruit grading  (Part 1)</title>
		<link>https://petaminds.com/use-ai-technology-in-agriculture-for-fruit-grading-part-1/</link>
					<comments>https://petaminds.com/use-ai-technology-in-agriculture-for-fruit-grading-part-1/#comments</comments>
		
		<dc:creator><![CDATA[Tung Nguyen]]></dc:creator>
		<pubDate>Thu, 26 Sep 2019 03:37:27 +0000</pubDate>
				<category><![CDATA[back-end]]></category>
		<category><![CDATA[data science]]></category>
		<category><![CDATA[front-end]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[classification]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[deep learning]]></category>
		<category><![CDATA[fruit]]></category>
		<category><![CDATA[fruit grading]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[neural network]]></category>
		<guid isPermaLink="false">http://petaminds.com/?p=645</guid>

					<description><![CDATA[<p>During a meet up last month, a friend told me about the current project on a farm in New Zealand. They want to build a system to grade their fruits and AI is the technology they are looking for. It inspired me to write about how machine learning can help in solving such a problem. [&#8230;]</p>
<p>The post <a href="https://petaminds.com/use-ai-technology-in-agriculture-for-fruit-grading-part-1/">AI in agriculture: fruit grading  (Part 1)</a> appeared first on <a href="https://petaminds.com">Petamind</a>.</p>
]]></description>
		
					<wfw:commentRss>https://petaminds.com/use-ai-technology-in-agriculture-for-fruit-grading-part-1/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Word2vec with gensim &#8211; a simple word embedding example</title>
		<link>https://petaminds.com/word2vec-with-gensim-a-simple-word-embedding-example/</link>
					<comments>https://petaminds.com/word2vec-with-gensim-a-simple-word-embedding-example/#comments</comments>
		
		<dc:creator><![CDATA[Tung Nguyen]]></dc:creator>
		<pubDate>Wed, 11 Apr 2018 05:58:27 +0000</pubDate>
				<category><![CDATA[data science]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[CBOW]]></category>
		<category><![CDATA[GENSIM]]></category>
		<category><![CDATA[neural network]]></category>
		<category><![CDATA[NLP]]></category>
		<category><![CDATA[skip-grams]]></category>
		<guid isPermaLink="false">https://petaminds.com/?p=1127</guid>

					<description><![CDATA[<p>In this short article, we show a simple example of how to use GenSim and word2vec for word embedding. Word2vec Word2vec is a famous algorithm for natural language processing (NLP) created by Tomas Mikolov teams. It is a group of related models that are used to produce&#160;word embeddings, i.e. CBOW and skip-grams. The models are [&#8230;]</p>
<p>The post <a href="https://petaminds.com/word2vec-with-gensim-a-simple-word-embedding-example/">Word2vec with gensim &#8211; a simple word embedding example</a> appeared first on <a href="https://petaminds.com">Petamind</a>.</p>
]]></description>
		
					<wfw:commentRss>https://petaminds.com/word2vec-with-gensim-a-simple-word-embedding-example/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
