<?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>air compressor Archives | KAISPE</title>
	<atom:link href="https://www.kaispe.com/tag/air-compressor/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kaispe.com/tag/air-compressor/</link>
	<description>Your Digital Transformation Partner</description>
	<lastBuildDate>Fri, 11 Nov 2022 08:04:17 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.4</generator>

<image>
	<url>https://www.kaispe.com/wp-content/uploads/2022/01/cropped-k-32x32.png</url>
	<title>air compressor Archives | KAISPE</title>
	<link>https://www.kaispe.com/tag/air-compressor/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Predictive Maintenance of Air Compressors using Azure ML Services</title>
		<link>https://www.kaispe.com/predictive-maintenance-of-air-compressors-using-azure-ml-services/</link>
		
		<dc:creator><![CDATA[jdkaispe]]></dc:creator>
		<pubDate>Fri, 20 Dec 2019 10:19:38 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[air compressor]]></category>
		<category><![CDATA[azure machine learning services]]></category>
		<category><![CDATA[machine learning]]></category>
		<category><![CDATA[predictive maintenance]]></category>
		<guid isPermaLink="false">https://www.kaispe.com/?p=1073</guid>

					<description><![CDATA[<p>In today&#8217;s world, production efficiency can be improved by maximizing the time that the machines are operational through predictive maintenance, or by predicting the distribution of future time-to-failure using raw [&#8230;]</p>
<p>The post <a href="https://www.kaispe.com/predictive-maintenance-of-air-compressors-using-azure-ml-services/">Predictive Maintenance of Air Compressors using Azure ML Services</a> appeared first on <a href="https://www.kaispe.com">KAISPE</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In today&#8217;s world, production efficiency can be improved by maximizing the time that the machines are operational through predictive maintenance, or by predicting the distribution of future time-to-failure using raw time-series data. So, in a previous <a href="https://www.kaispe.com/predictive-maintenance-feature-in-kaispe-iot-web-portal/">blog post</a>, KAISPE LLC introduced predictive maintenance capabilities in its solutions, which briefly discussed how we include predictive maintenance capabilities in <a href="https://azuremarketplace.microsoft.com/en-us/marketplace/apps/kaispellc.kaispe_iotwebportal?tab=Overview">IoT web portal</a> to help customers proactively maintain their business assets.</p>
<p>To demonstrate the predictive maintenance solution, we will walk through the <strong>Predictive Maintenance </strong>of <strong>Air Compressors</strong> using <strong>Azure Machine Learning service</strong> step by step. We will train the machine learning model on remote computing resources, and the Azure Machine Learning workflow in the Python Jupyter notebook, as a template to train our own machine learning model with our own data.</p>
<p>Let’s set up development environment and create a workspace</p>
<p>1- Set up a development environment:</p>
<p><img fetchpriority="high" decoding="async" class=" wp-image-1076 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservice2.png" alt="" width="559" height="96" /></p>
<p>2- Create a workspace</p>
<p><img decoding="async" class="size-full wp-image-1077 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservice3.png" alt="" width="563" height="173" /></p>
<p>3-Create Experiment</p>
<p><img decoding="async" class="size-full wp-image-1078 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservice4.png" alt="" width="574" height="124" /></p>
<p>4- Create or attach an existing compute target</p>
<p><img decoding="async" class=" wp-image-1088 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservices13.png" alt="" width="555" height="72" /></p>
<p>Note: You can also create the compute resources in the <a href="https://portal.azure.com/">Azure Portal</a></p>
<p>In the next step we will verify the dataset and upload it into the cloud, so that the cloud training environment can access it. We save the model training data to a csv file.</p>
<p><img decoding="async" class="wp-image-1079 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservice5.png" alt="" width="512" height="296" /></p>
<p><img decoding="async" class=" wp-image-1080 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservice6.png" alt="" width="507" height="165" /></p>
<p>So, let’s convert our label column values from [&#8216;NORMAL&#8217;, &#8216;ABNORMAL&#8217;, &#8216;BROKEN&#8217;] to [0,1,2]. This is an essential step as the scikit-learn&#8217;s Random Forest can&#8217;t predict text.</p>
<p><img decoding="async" class=" wp-image-1082 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservices7.png" alt="" width="593" height="195" /></p>
<p>Next, we will be training our model on a remote cluster where we have to submit the job to the remote training cluster you set up earlier. To submit a job you will perform these tasks:</p>
<ul>
<li>Create a directory</li>
<li>Create a training script</li>
<li>Create an estimator object</li>
<li>Submit the job</li>
</ul>
<p>So let’s create the directory to deliver the necessary code from your computer to the remote resource and created a training script</p>
<p><img decoding="async" class=" wp-image-1081 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservice7.png" alt="" width="573" height="112" /></p>
<p><img decoding="async" class=" wp-image-1083 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservices8.png" alt="" width="586" height="216" /></p>
<p>Now, we create an estimator and submit the job to the cluster</p>
<p><img decoding="async" class="wp-image-1084 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservices9.png" alt="" width="525" height="244" /></p>
<p><img decoding="async" class=" wp-image-1085 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservices10.png" alt="" width="538" height="79" /></p>
<p>&nbsp;</p>
<p>In last we will register a model in the workspace so that you or other employees can later query, examine, and deploy it.</p>
<p><img decoding="async" class=" wp-image-1086 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservices11.png" alt="" width="589" height="115" /></p>
<p>&nbsp;</p>
<p>Finally we can see the run experiment and register model on Azure Portal.</p>
<p><img decoding="async" class=" wp-image-1075 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservice1.png" alt="" width="559" height="257" /></p>
<p><img decoding="async" class=" wp-image-1087 aligncenter" src="https://www.kaispe.com/wp-content/uploads/2019/12/mlservices12.png" alt="" width="567" height="209" /></p>
<p>I hope you found this blog post helpful. If you have any questions, please feel free to contact info@kaispe.com.</p>
<p>The post <a href="https://www.kaispe.com/predictive-maintenance-of-air-compressors-using-azure-ml-services/">Predictive Maintenance of Air Compressors using Azure ML Services</a> appeared first on <a href="https://www.kaispe.com">KAISPE</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Connected Air Compressors, Industry 4.0 and the Internet of Things</title>
		<link>https://www.kaispe.com/connected-air-compressors-industry-4-0-and-the-internet-of-things/</link>
		
		<dc:creator><![CDATA[jdkaispe]]></dc:creator>
		<pubDate>Mon, 07 Oct 2019 11:06:41 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[air compressor]]></category>
		<category><![CDATA[iot air compressor]]></category>
		<category><![CDATA[smart compressors]]></category>
		<guid isPermaLink="false">https://www.kaispe.com/?p=890</guid>

					<description><![CDATA[<p>As KAISPE team is working on an IoT solution accelerator for Air Compressor remote monitoring and predictive maintenance, we found a really interesting blog by www.thecompressedairblog.com. Here you go! &#8220;Two [&#8230;]</p>
<p>The post <a href="https://www.kaispe.com/connected-air-compressors-industry-4-0-and-the-internet-of-things/">Connected Air Compressors, Industry 4.0 and the Internet of Things</a> appeared first on <a href="https://www.kaispe.com">KAISPE</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>As KAISPE team is working on an IoT solution accelerator for Air Compressor remote monitoring and predictive maintenance, we found a really interesting blog by www.thecompressedairblog.com. Here you go!</p>
<p>&#8220;Two of the most popular buzzwords floating around today are Industry 4.0 and the Internet of Things (IOT). But what exactly do these mean, and how do they relate to compressed air systems &amp; industrial manufacturing? <a href="https://www.thecompressedairblog.com/industry-4-0-and-the-internet-of-things">Read More</a></p>
<p>The post <a href="https://www.kaispe.com/connected-air-compressors-industry-4-0-and-the-internet-of-things/">Connected Air Compressors, Industry 4.0 and the Internet of Things</a> appeared first on <a href="https://www.kaispe.com">KAISPE</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
