<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Machine Learning on Infinite Script</title><link>https://www.infinitescript.com/categories/machine-learning/</link><description>Recent content in Machine Learning on Infinite Script</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Wed, 24 Jul 2019 09:58:15 +0000</lastBuildDate><atom:link href="https://www.infinitescript.com/categories/machine-learning/index.xml" rel="self" type="application/rss+xml"/><item><title>Compile Caffe without Root Privileges</title><link>https://www.infinitescript.com/2019/07/compile-caffe-without-root-privileges/</link><pubDate>Wed, 24 Jul 2019 09:58:15 +0000</pubDate><guid>https://www.infinitescript.com/2019/07/compile-caffe-without-root-privileges/</guid><description>&lt;p&gt;On shared servers or HPC clusters, you often don&amp;rsquo;t have &lt;code&gt;sudo&lt;/code&gt; access, which makes installing system-level dependencies impossible. In this tutorial, we are going to introduce how to install Caffe entirely in user space, without root privileges. We assume that you have installed Anaconda and CUDA on your PC.&lt;/p&gt;&#10;&lt;blockquote&gt;&#10;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; This tutorial is based on CUDA 9.0, Caffe 1.0, protobuf 3.2.0, and OpenCV 3.4.3. You may need to adjust the version numbers for your own setup.&lt;/p&gt;</description></item><item><title>Gradient Boosting Decision Tree</title><link>https://www.infinitescript.com/2016/10/gradient-boosting-decision-tree/</link><pubDate>Sun, 09 Oct 2016 14:52:39 +0000</pubDate><guid>https://www.infinitescript.com/2016/10/gradient-boosting-decision-tree/</guid><description>&lt;p&gt;In the previous article, we&amp;rsquo;ve talked about &lt;a href="https://www.infinitescript.com/2016/09/adaboost/"&gt;AdaBoost&lt;/a&gt; which combines output of weak learners into a weighted sum that represents the final output of the boosted classifier. If you know little about AdaBoost or additive model, we highly recommend you read the article first.&lt;/p&gt;&#10;&lt;p&gt;Gradient boosting is a machine learning technique for regression and classification problems, which produces a prediction model in the form of an ensemble of weak prediction models, typically decision trees. It builds the model in a stage-wise fashion like other boosting methods do, and it generalizes them by allowing optimization of an arbitrary differentiable loss function.&lt;/p&gt;</description></item><item><title>AdaBoost</title><link>https://www.infinitescript.com/2016/09/adaboost/</link><pubDate>Thu, 15 Sep 2016 14:34:54 +0000</pubDate><guid>https://www.infinitescript.com/2016/09/adaboost/</guid><description>&lt;p&gt;AdaBoost, short for &amp;ldquo;Adaptive Boosting&amp;rdquo;, is a machine learning meta-algorithm formulated by Yoav Freund and Robert Schapire who won the Gödel Prize in 2003 for their work. The output of the other learning algorithms (weak learners) is combined into a weighted sum that represents the final output of the boosted classifier.&lt;/p&gt;&#10;&lt;p&gt;&#10;&#10;&lt;a href="https://www.infinitescript.com/2016/09/AdaBoost.webp" data-fancybox data-caption="Weighted combination of weak classifiers in AdaBoost"&gt;&#10; &lt;img src="https://www.infinitescript.com/2016/09/AdaBoost.webp" alt="Weighted combination of weak classifiers in AdaBoost" loading="lazy"&gt;&#10;&lt;/a&gt;&#10;&#10;&#10;&lt;/p&gt;&#10;&lt;p&gt;AdaBoost is adaptive in the sense that subsequent weak learners are tweaked in favor of those instances misclassified by previous classifiers. AdaBoost is sensitive to noisy data and outliers and is quite robust to overfitting.&lt;/p&gt;</description></item><item><title>Random Forest</title><link>https://www.infinitescript.com/2016/08/random-forest/</link><pubDate>Mon, 22 Aug 2016 14:37:10 +0000</pubDate><guid>https://www.infinitescript.com/2016/08/random-forest/</guid><description>&lt;p&gt;Random forests are an ensemble learning method for classification, regression, and other tasks. They operate by constructing a multitude of decision trees at training time and outputting the class that is the mode of the classes (classification) or the mean prediction (regression) of the individual trees. Each tree is grown on a random subset of the training data and considers only a random subset of the features at each split, so the forest as a whole corrects for a decision tree&amp;rsquo;s habit of overfitting its training set: when it is time to make a prediction, the trees vote and the majority wins.&lt;/p&gt;</description></item><item><title>Random Projection</title><link>https://www.infinitescript.com/2016/01/random-projection/</link><pubDate>Sun, 10 Jan 2016 02:13:13 +0000</pubDate><guid>https://www.infinitescript.com/2016/01/random-projection/</guid><description>&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;&#10;&lt;p&gt;In mathematics and statistics, random projection is a technique used to reduce the dimensionality of a set of points which lie in Euclidean space. Random projection methods are known for their simplicity and low error rates compared with other dimensionality-reduction techniques, and experiments show that they preserve pairwise distances well.&lt;/p&gt;&#10;&lt;p&gt;Consider a problem as follows: We have a set of $n$ points in a high-dimensional Euclidean space $\mathbf{R}^d$. We want to project the points onto a space of low dimension $\mathbf{R}^k$ in such a way that pairwise distances of the points are approximately the same as before.&lt;/p&gt;</description></item><item><title>Decision Tree</title><link>https://www.infinitescript.com/2015/12/decision-tree/</link><pubDate>Thu, 03 Dec 2015 11:06:57 +0000</pubDate><guid>https://www.infinitescript.com/2015/12/decision-tree/</guid><description>&lt;h2 id="whats-a-decision-tree"&gt;What’s a decision tree?&lt;/h2&gt;&#10;&lt;p&gt;A decision tree is a flowchart-like structure in which each internal node represents a &amp;ldquo;test&amp;rdquo; on an attribute (e.g. whether &lt;code&gt;Income&lt;/code&gt; is below 50K), each branch represents an outcome of that test, and each leaf node holds a prediction: a class label for classification, or a value for regression. A path from the root to a leaf is therefore a chain of conditions that ends in a decision.&lt;/p&gt;</description></item></channel></rss>