<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://en.formulasearchengine.com/w/index.php?action=history&amp;feed=atom&amp;title=Fabry_gap_theorem</id>
	<title>Fabry gap theorem - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://en.formulasearchengine.com/w/index.php?action=history&amp;feed=atom&amp;title=Fabry_gap_theorem"/>
	<link rel="alternate" type="text/html" href="https://en.formulasearchengine.com/w/index.php?title=Fabry_gap_theorem&amp;action=history"/>
	<updated>2026-08-11T06:11:08Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.47.0-wmf.7</generator>
	<entry>
		<id>https://en.formulasearchengine.com/w/index.php?title=Fabry_gap_theorem&amp;diff=29907&amp;oldid=prev</id>
		<title>en&gt;Bazonka: Help needed: Natural boundary</title>
		<link rel="alternate" type="text/html" href="https://en.formulasearchengine.com/w/index.php?title=Fabry_gap_theorem&amp;diff=29907&amp;oldid=prev"/>
		<updated>2014-01-26T10:03:14Z</updated>

		<summary type="html">&lt;p&gt;Help needed: &lt;a href=&quot;/w/index.php?title=Natural_boundary&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Natural boundary (page does not exist)&quot;&gt;Natural boundary&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{primary sources|date=December 2013}}&lt;br /&gt;
{{lower case title}}&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;t-Distributed Stochastic Neighbor Embedding (t-SNE)&amp;#039;&amp;#039;&amp;#039; is a [[machine learning]] algorithm for [[dimensionality reduction]] developed by Laurens van der Maaten and [[Geoffrey Hinton]].&amp;lt;ref&amp;gt;{{cite journal|last=van der Maaten|first=L.J.P.|coauthors=Hinton, G.E.|title=Visualizing High-Dimensional Data Using t-SNE|journal=Journal of Machine Learning Research 9|date=Nov 2008|pages=2579–2605|url=http://jmlr.org/papers/volume9/vandermaaten08a/vandermaaten08a.pdf}}&amp;lt;/ref&amp;gt; It is a [[nonlinear dimensionality reduction]] technique that is particularly well suited for embedding high-dimensional data into a space of two or three dimensions, which can then be visualized in a scatter plot. Specifically, it models each high-dimensional object by a two- or three-dimensional point in such a way that similar objects are modeled by nearby points and dissimilar objects are modeled by distant points.&lt;br /&gt;
&lt;br /&gt;
The t-SNE algorithms comprises two main stages. First, t-SNE constructs a [[probability distribution]] over pairs of high-dimensional objects in such a way that similar objects have a high probability of being picked, whilst dissimilar points have an [[infinitesimal]] probability of being picked. Second, t-SNE defines a similar probability distribution over the points in the low-dimensional map, and it minimizes the [[Kullback-Leibler divergence]] between the two distributions with respect to the locations of the points in the map.&lt;br /&gt;
&lt;br /&gt;
t-SNE has been used in a wide range of applications, including [[computer security]] research,&amp;lt;ref&amp;gt;{{cite journal|last=Gashi|first=I.|coauthors=Stankovic, V., Leita, C., Thonnard, O.|title=An Experimental Study of Diversity with Off-the-shelf AntiVirus Engines|journal=Proceedings of the IEEE International Symposium on Network Computing and Applications|year=2009|pages=4–11}}&amp;lt;/ref&amp;gt; [[music analysis]],&amp;lt;ref&amp;gt;{{cite journal|last=Hamel|first=P.|coauthors=Eck, D.|title=Learning Features from Music Audio with Deep Belief Networks|journal=Proceedings of the International Society for Music Information Retrieval Conference|year=2010|pages=339–344}}&amp;lt;/ref&amp;gt; [[cancer research]],&amp;lt;ref&amp;gt;{{cite journal|last=Jamieson|first=A.R.|coauthors=Giger, M.L., Drukker,  K., Lui, H., Yuan, Y., Bhooshan, N.|title=Exploring Nonlinear Feature Space Dimension Reduction and Data Representation in Breast CADx with Laplacian Eigenmaps and t-SNE|journal=Medical Physics 37(1)|year=2010|pages=339–351|doi=10.1118/1.3267037|volume=37}}&amp;lt;/ref&amp;gt; and [[bio-informatics]].&amp;lt;ref&amp;gt;{{cite journal|last=Wallach|first=I.|coauthors=Liliean, R.|title=The Protein-Small-Molecule Database, A Non-Redundant Structural Resource for the Analysis of Protein-Ligand Binding|journal=Bioinformatics 25(5)|year=2009|pages=615–620|doi=10.1093/bioinformatics/btp035|volume=25|issue=5}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Details ==&lt;br /&gt;
Given a set of &amp;lt;math&amp;gt;N&amp;lt;/math&amp;gt; high-dimensional objects &amp;lt;math&amp;gt;\mathbf{x}_1, \dots, \mathbf{x}_N&amp;lt;/math&amp;gt;, t-SNE first computes probabilities &amp;lt;math&amp;gt;p_{ij}&amp;lt;/math&amp;gt; that are proportional to the similarity of objects &amp;lt;math&amp;gt;\mathbf{x}_i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\mathbf{x}_j&amp;lt;/math&amp;gt;, as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;p_{j|i} = \frac{\exp(-\lVert\mathbf{x}_i, \mathbf{x}_j\rVert^2 / 2\sigma_i^2)}{\sum_{k \neq i} \exp(-\lVert\mathbf{x}_i, \mathbf{x}_k\rVert^2 / 2\sigma_i^2)},&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;p_{ij} = \frac{p_{j|i} + p_{i|j}}{2N}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The bandwidth of the Gaussian kernels &amp;lt;math&amp;gt;\sigma_i&amp;lt;/math&amp;gt;, is set in such a way that the [[perplexity]] of the conditional distribution equals a predefined perplexity using a [[binary search]]. As a result, the bandwidth is adapted to the [[density]] of the data: smaller values of &amp;lt;math&amp;gt;\sigma_i&amp;lt;/math&amp;gt; are used in denser parts of the data space.&lt;br /&gt;
&lt;br /&gt;
t-SNE aims to learn a &amp;lt;math&amp;gt;d&amp;lt;/math&amp;gt;-dimensional map &amp;lt;math&amp;gt;\mathbf{y}_1, \dots, \mathbf{y}_N&amp;lt;/math&amp;gt; (with &amp;lt;math&amp;gt;\mathbf{y}_i \in \mathbb{R}^d&amp;lt;/math&amp;gt;) that reflects the similarities  &amp;lt;math&amp;gt;p_{ij}&amp;lt;/math&amp;gt; as well as possible. To this end, it measures similarities &amp;lt;math&amp;gt;q_{ij}&amp;lt;/math&amp;gt; between two points in the map &amp;lt;math&amp;gt;\mathbf{y}_i&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\mathbf{y}_j&amp;lt;/math&amp;gt;, using a very similar approach. Specifically, &amp;lt;math&amp;gt;q_{ij}&amp;lt;/math&amp;gt; is defined as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;q_{ij} = \frac{(1 + \lVert \mathbf{y}_i - \mathbf{y}_j\rVert^2)^{-1}}{\sum_{k \neq l} (1 + \lVert \mathbf{y}_k - \mathbf{y}_l\rVert^2)^{-1}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Herein a heavy-tailed [[Student-t distribution]] is used to measure similarities between low-dimensional points in order to allow dissimilar objects to be modeled far apart in the map CITATION.&lt;br /&gt;
&lt;br /&gt;
The locations of the points &amp;lt;math&amp;gt;\mathbf{y}_i&amp;lt;/math&amp;gt; in the map are determined by minimizing the [[Kullback-Leibler divergence]] between the two distributions &amp;lt;math&amp;gt;P&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;Q&amp;lt;/math&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;KL(P||Q) = \sum_{i \neq j} p_{ij} \log \frac{p_{ij}}{q_{ij}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The minimization of the Kullback-Leibler divergence with respect to the points &amp;lt;math&amp;gt;\mathbf{y}_i&amp;lt;/math&amp;gt; is performed using [[gradient descent]]. The result of this optimization is a map that reflects the similarities between the high-dimensional inputs well.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Machine learning algorithms]]&lt;/div&gt;</summary>
		<author><name>en&gt;Bazonka</name></author>
	</entry>
</feed>