<?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>model training Archives - Artificial Intelligence</title>
	<atom:link href="https://www.aiuniverse.xyz/tag/model-training/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.aiuniverse.xyz/tag/model-training/</link>
	<description>Exploring the universe of Intelligence</description>
	<lastBuildDate>Thu, 09 Jan 2020 09:54:47 +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>WHAT IS MACHINE LEARNING? A QUICK GUIDE TO BASIC CONCEPTS</title>
		<link>https://www.aiuniverse.xyz/what-is-machine-learning-a-quick-guide-to-basic-concepts/</link>
					<comments>https://www.aiuniverse.xyz/what-is-machine-learning-a-quick-guide-to-basic-concepts/#respond</comments>
		
		<dc:creator><![CDATA[aiuniverse]]></dc:creator>
		<pubDate>Thu, 09 Jan 2020 09:54:46 +0000</pubDate>
				<category><![CDATA[Machine Learning]]></category>
		<category><![CDATA[automatically learn]]></category>
		<category><![CDATA[computer programs]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[model training]]></category>
		<guid isPermaLink="false">http://www.aiuniverse.xyz/?p=6045</guid>

					<description><![CDATA[<p>Source: builtin.com Machine learning does exactly what it says on the tin. It is a method by which a computer program can “automatically learn and improve from <a class="read-more-link" href="https://www.aiuniverse.xyz/what-is-machine-learning-a-quick-guide-to-basic-concepts/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/what-is-machine-learning-a-quick-guide-to-basic-concepts/">WHAT IS MACHINE LEARNING? A QUICK GUIDE TO BASIC CONCEPTS</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Source: builtin.com</p>



<p class="wp-block-paragraph">Machine learning does exactly what it says on the tin. It is a method by which a computer program can “automatically learn and improve from experience without being explicitly programmed.”</p>



<p class="wp-block-paragraph">Now, what does that mean? Let&#8217;s breakdown a few concepts.</p>



<h4 class="wp-block-heading">PREDICTIVE MODELING AND LEARNING </h4>



<p class="wp-block-paragraph">Consider how a living creature learns something. Say there’s a mail carrier that always brings a pocketful of dog treats on his rounds. Whenever he comes to a house with a dog, he drops one of those treats into the mail slot along with the mail. The dog inside the house recognizes the scent of the mailman, and knows that he comes to the house around 2 p.m. every day.</p>



<p class="wp-block-paragraph">After a few days of receiving treats in the mail at the same time, the dog begins to understand the pattern: 2 p.m. = mailman = treats. The dog adjusts its behavior accordingly, getting excited and sitting near the door at the same time each day, then barking like crazy when the mailman gets there.</p>



<p class="wp-block-paragraph">Naturally, there are anomalies in the dataset. Sometimes a different mailman comes who doesn’t bring treats, or sometimes the mailman is running behind schedule. And there’s no mail on Sundays.</p>



<p class="wp-block-paragraph">The dog is not deterred by exceptions to the pattern, however, because the predictive model it has created is correct more often than not. If the dog were very intelligent, it might know to check that the correct mailman was coming before getting excited, and recognize that nobody comes every seventh day, making this predictive model even more accurate.</p>



<p class="wp-block-paragraph">In broad strokes, a computer program using machine learning follows the same method. It analyzes data and searches for an underlying pattern or trend to develop a predictive model that learns from the data it&#8217;s fed. </p>



<h4 class="wp-block-heading">ALGORITHMS</h4>



<p class="wp-block-paragraph">Any machine learning program needs a “training dataset” to teach it what kind of information it can expect, and from which to begin noticing the kind of information the programmer is looking for.</p>



<p class="wp-block-paragraph">The difference between a dog and a computer program is, of course, the volume and complexity of the input.</p>



<p class="wp-block-paragraph">Machine learning algorithms can process massive amounts of data and predict outcomes and patterns based on that information. Over time, the predictive model becomes more accurate as the program improves itself, no outside tampering required.</p>



<p class="wp-block-paragraph">There are three broad categories of algorithms, which are defined by what kind of training datasets they are given: supervised, unsupervised, and semi-supervised.</p>



<p class="wp-block-paragraph">Each of these approaches has advantages and disadvantages, depending on what the program is intended to accomplish.</p>



<h4 class="wp-block-heading">SUPERVISED LEARNING</h4>



<p class="wp-block-paragraph">Overview: Supervised machine learning algorithms are trained on datasets where a given input leads to a specific output according to a mapping function.</p>



<p class="wp-block-paragraph">How it works: According to Jason Brownlee, “the goal is to approximate the mapping function so well that when you have new input data (X) that you can predict the output variables (Y) for that data.”</p>



<p class="wp-block-paragraph">The programmer is in this instance like a teacher who gives their student a quiz. The teacher knows the correct answers, and grades the student each time they are quizzed. The student keeps taking quizzes until they pass consistently.</p>



<h4 class="wp-block-heading">Supervised problems can be grouped into two types: </h4>



<ul class="wp-block-list"><li>Classification is sorting output into categories. An example of a classification problem is a spam filter for your email. The program reads the emails, and classifies them as spam or not-spam based on their content.</li></ul>



<ul class="wp-block-list"><li>Regression problems, on the other hand, return an output that can be measured. For example, a program that calculates how many gallons of gas a car requires on a road trip given the distance and model of the car would require a regression algorithm.</li></ul>



<h4 class="wp-block-heading">UNSUPERVISED LEARNING</h4>



<p class="wp-block-paragraph">Overview: Unsupervised machine learning has no correct output for the given input. Unlike supervised machine learning, there is no expected answer, and there is no teacher, just the program plugging away at the data on its own.</p>



<p class="wp-block-paragraph">The goal of this type of machine learning is to analyze the data as a whole, and discover facts about the underlying structure.</p>



<p class="wp-block-paragraph">How it works: When an unsupervised algorithm analyzes data, it is usually for one of two purposes:</p>



<ul class="wp-block-list"><li>In a clustering problem the goal is to find particular groups within a dataset. Discovering your customers’ age and income distribution is an example of a clustering problem, as the program can show you which age and income groups are most common.</li></ul>



<ul class="wp-block-list"><li>An association problem is more focused on finding rules or patterns that govern a dataset. When you analyze a customer’s flow through your website, checking which links they are most drawn to, that’s rule association.</li></ul>



<h4 class="wp-block-heading">SEMI-SUPERVISED LEARNING</h4>



<p class="wp-block-paragraph">Overview: Semi-supervised machine learning is, unsurprisingly, a combination of the first two types.</p>



<p class="wp-block-paragraph">How it works: Techniques of supervised and unsupervised machine learning can be used in the same problem.</p>



<p class="wp-block-paragraph">For example, one could make predictions about a dataset using an unsupervised algorithm and feed the results to a supervised algorithm.</p>



<p class="wp-block-paragraph">Semi-supervised machine learning doesn’t have any defined subcategories, but is most useful when your dataset is a mix of labeled and unlabeled data points.</p>



<p class="wp-block-paragraph">Real-world problems, like classifying a collection of physical photographs, may be best solved by semi-supervised machine learning.</p>



<h4 class="wp-block-heading">MACHINE LEARNING USE CASES<br> </h4>



<p class="wp-block-paragraph">The possible applications and advantages of this technology are numerous.</p>



<p class="wp-block-paragraph">Very generally, we need machine learning if we want to accomplish a task that requires human-like adaptability, or is too large to scale. It also allows us to create an analytical model that is free of human bias, at least in theory.</p>



<p class="wp-block-paragraph">Tasks that humans can learn to do automatically—such as understanding spoken words, judging road conditions, and recognizing people in a photograph—don&#8217;t come easily to a typical computer program because it would need to learn from experiences as a human does.</p>



<p class="wp-block-paragraph">Machine learning is designed to mimic human intelligence within set parameters. Every iteration helps the program improve its accuracy and ability to perform whatever task it&#8217;s meant to do.</p>



<h4 class="wp-block-heading">SCALING INTELLIGENCE</h4>



<p class="wp-block-paragraph">Human brains are marvelous data processors, but with limits. A human being could never do what a search engine does, for example, because there’s more information on the internet than a person can process.</p>



<p class="wp-block-paragraph">A machine learning program can accomplish a task that most humans could do, such as search a web page for keywords, but do it on a scale that only computers can process.</p>
<p>The post <a href="https://www.aiuniverse.xyz/what-is-machine-learning-a-quick-guide-to-basic-concepts/">WHAT IS MACHINE LEARNING? A QUICK GUIDE TO BASIC CONCEPTS</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/what-is-machine-learning-a-quick-guide-to-basic-concepts/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Google launches AutoML Natural Language with improved text classification and model training</title>
		<link>https://www.aiuniverse.xyz/google-launches-automl-natural-language-with-improved-text-classification-and-model-training/</link>
					<comments>https://www.aiuniverse.xyz/google-launches-automl-natural-language-with-improved-text-classification-and-model-training/#respond</comments>
		
		<dc:creator><![CDATA[aiuniverse]]></dc:creator>
		<pubDate>Sat, 14 Dec 2019 09:42:20 +0000</pubDate>
				<category><![CDATA[Google Cloud AutoML]]></category>
		<category><![CDATA[AutoML]]></category>
		<category><![CDATA[classification]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[model training]]></category>
		<guid isPermaLink="false">http://www.aiuniverse.xyz/?p=5639</guid>

					<description><![CDATA[<p>Source: venturebeat.com Earlier this year, Google took the wraps off of AutoML Natural Language, an extension of its Cloud AutoML machine learning platform to the natural language <a class="read-more-link" href="https://www.aiuniverse.xyz/google-launches-automl-natural-language-with-improved-text-classification-and-model-training/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/google-launches-automl-natural-language-with-improved-text-classification-and-model-training/">Google launches AutoML Natural Language with improved text classification and model training</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Source: venturebeat.com</p>



<p class="wp-block-paragraph">Earlier this year, Google took the wraps off of AutoML Natural Language, an extension of its Cloud AutoML machine learning platform to the natural language processing domain. After a months-long beta, AutoML today launched in general availability for customers globally, with support for tasks like classification, sentiment analysis, and entity extraction, as well as a range of file formats, including native and scanned PDFs.</p>



<p class="wp-block-paragraph">By way of refresher, AutoML Natural Language taps machine learning to reveal the structure and meaning of text from emails, chat logs, social media posts, and more. It can extract information about people, places, and events both from uploaded and pasted text or Google Cloud Storage documents, and it allows users to train their own custom AI models to classify, detect, and analyze things like sentiment, entities, content, and syntax. It furthermore offers custom entity extraction, which enables the identification of domain-specific entities within documents that don’t appear in standard language models.</p>



<p class="wp-block-paragraph">AutoML Natural Language has over 5,000 classification labels and allows training on up to 1 million documents up to 10MB in size, which Google says makes it an excellent fit for “complex” use cases like comprehending legal files or document segmentation for organizations with large content taxonomies. It has been improved in the months since its reveal, specifically in the areas of text and document entity extraction — Google says that AutoML Natural Language now considers additional context (such as the spatial structure and layout information of a document) for model training and prediction to improve the recognition of text in invoices, receipts, resumes, and contracts.</p>



<p class="wp-block-paragraph">Additionally, Google says that AutoML Natural Language is now FedRAMP-authorized at the Moderate level, meaning it has been vetted according to U.S. government specifications for data where the impact of loss is limited or serious. It says that this — along with newly introduced functionality that lets customers create a data set, train a model, and make predictions while keeping the data and related machine learning processing within a single server region — makes it easier for federal agencies to take advantage.</p>



<p class="wp-block-paragraph">Already, Hearst is using AutoML Natural Language to help organize content across its domestic and international magazines, and Japanese publisher Nikkei Group is leveraging AutoML Translate to publish articles in different languages. Chicory, a third early adopter, tapped it to develop custom digital shopping and marketing solutions for grocery retailers like Kroger, Amazon, and Instacart.</p>



<p class="wp-block-paragraph">The ultimate goal is to provide organizations, researchers, and businesses who require custom machine learning models a simple, no-frills way to train them, explained product manager for natural language Lewis Liu in a blog post. “Natural language processing is a valuable tool used to reveal the structure and meaning of text,” he said. “We’re continuously improving the quality of our models in partnership with Google AI research through better fine-tuning techniques, and larger model search spaces. We’re also introducing more advanced features to help AutoML Natural Language understand documents better.”</p>



<p class="wp-block-paragraph">Notably, the launch of AutoML follows on the heels of AWS Textract, Amazon’s machine learning service for text and data extraction, which debuted in May. Microsoft offers a comparable service in Azure Text Analytics.</p>
<p>The post <a href="https://www.aiuniverse.xyz/google-launches-automl-natural-language-with-improved-text-classification-and-model-training/">Google launches AutoML Natural Language with improved text classification and model training</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/google-launches-automl-natural-language-with-improved-text-classification-and-model-training/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
