<title>generalization on Kyle Roth</title>

<link>https://kylrth.com/tags/generalization/</link>

<description>Recent content in generalization on Kyle Roth</description>

<generator>Hugo -- gohugo.io</generator>

<language>en-us</language>

<lastBuildDate>Thu, 17 Mar 2022 14:34:33 -0400</lastBuildDate>

<atom:link href="https://kylrth.com/tags/generalization/index.xml" rel="self" type="application/rss+xml"/>

<item>

<title>The effect of model size on worst-group generalization</title>

<link>https://kylrth.com/paper/effect-of-model-size-on-worst-group-generalization/</link>

<pubDate>Thu, 17 Mar 2022 14:34:33 -0400</pubDate>

<guid>https://kylrth.com/paper/effect-of-model-size-on-worst-group-generalization/</guid>

<description>This was a paper we presented about in Irina Rish&rsquo;s neural scaling laws course (IFT6167) in winter 2022. You can view the slides we used here.</description>

...

</item>

<item>

<title>Learning explanations that are hard to vary</title>

<link>https://kylrth.com/paper/learning-explanations-hard-to-vary/</link>

<pubDate>Tue, 22 Feb 2022 12:29:17 -0500</pubDate>

<guid>https://kylrth.com/paper/learning-explanations-hard-to-vary/</guid>

<description>The big idea here is to use the geometric mean instead of the arithmetic mean across samples in the batch when computing the gradient for SGD. This overcomes the situation where averaging produces optima that are not actually optimal for any individual samples, as demonstrated in their toy example below: In practice, the method the authors test is not exactly the geometric mean for numerical and performance reasons, but effectively accomplishes the same thing by avoiding optima that are &ldquo;inconsistent&rdquo; (meaning that gradients from relatively few samples actually point in that direction).</description>

...

</item>

<item>

<title>In search of robust measures of generalization</title>

<link>https://kylrth.com/paper/robust-measures-of-generalization/</link>

<pubDate>Mon, 21 Feb 2022 15:33:22 -0500</pubDate>

<guid>https://kylrth.com/paper/robust-measures-of-generalization/</guid>

<description>These authors define robust error as the least upper bound on the expected loss over a family of environmental settings (including dataset, model architecture, learning algorithm, etc.): \[\sup_{e\in\mathcal F}\mathbb E_{\omega\in P^e}\left[\ell(\phi,\omega)\right]\] The fact that this is an upper bound and not an average is very important and is what makes this work unique from previous work in this direction. Indeed, what we should be concerned about is not how poorly a model performs on the average sample but on the worst-case sample.</description>

...

</item>

<item>

<title>Inductive biases for deep learning of higher-level cognition</title>

<link>https://kylrth.com/paper/inductive-biases-higher-cognition/</link>

<pubDate>Tue, 08 Dec 2020 06:40:48 -0700</pubDate>

<guid>https://kylrth.com/paper/inductive-biases-higher-cognition/</guid>

<description>This is a long paper, so a lot of my writing here is an attempt to condense the discussion. I&rsquo;ve taken the liberty to pull exact phrases and structure from the paper without explicitly using quotes. Our main hypothesis is that deep learning succeeded in part because of a set of inductive biases, but that additional ones should be added in order to go from good in-distribution generalization in highly supervised learning tasks (or where strong and dense rewards are available), such as object recognition in images, to strong out-of-distribution generalization and transfer learning to new tasks with low sample complexity.</description>

...

</item>

<item>

<title>Overcoming catastrophic forgetting in neural networks</title>

<link>https://kylrth.com/paper/overcoming-catastrophic-forgetting/</link>

<pubDate>Thu, 01 Oct 2020 10:47:28 -0600</pubDate>

<guid>https://kylrth.com/paper/overcoming-catastrophic-forgetting/</guid>

<description>In the paper they use Bayes&rsquo; rule to show that the contribution of the first of two tasks is contained in the posterior distribution of model parameters over the first dataset. This is important because it means we can estimate that posterior to try to get a sense for which model parameters were most important for that first task. In this paper, they perform that estimation using a multivariate Gaussian distribution.</description>

...

</item>

<item>

<title>Learning neural causal models from unknown interventions</title>

<link>https://kylrth.com/paper/neural-causal-models/</link>

<pubDate>Tue, 22 Sep 2020 10:39:54 -0600</pubDate>

<guid>https://kylrth.com/paper/neural-causal-models/</guid>

<description>This is a follow-on to A meta-transfer objective for learning to disentangle causal mechanisms Here we describe an algorithm for predicting the causal graph structure of a set of visible random variables, each possibly causally dependent on any of the other variables. the algorithm There are two sets of parameters, the structural parameters and the functional parameters. The structural parameters compose a matrix where \(\sigma(\gamma_{ij})\) represents the belief that variable \(X_j\) is a direct cause of \(X_i\).</description>

...

</item>

<item>

<title>A meta-transfer objective for learning to disentangle causal mechanisms</title>

<link>https://kylrth.com/paper/meta-transfer-objective-for-causal-mechanisms/</link>

<pubDate>Mon, 21 Sep 2020 08:46:30 -0600</pubDate>

<guid>https://kylrth.com/paper/meta-transfer-objective-for-causal-mechanisms/</guid>

<description>Theoretically, models should be able to predict on out-of-distribution data if their understanding of causal relationships is correct. The toy problem they use in this paper is that of predicting temperature from altitude. If a model is trained on data from Switzerland, the model should ideally be able to correctly predict on data from the Netherlands, even though it hasn&rsquo;t seen elevations that low before. The main contribution of this paper is that they&rsquo;ve found that models tend to transfer faster to a new distribution when they learn the correct causal relationships, and when those relationships are sparsely represented, meaning they are represented by relatively few nodes in the network.</description>

...

</item>

<item>

<title>Deep learning generalizes because the parameter-function map is biased towards simple functions</title>

<link>https://kylrth.com/paper/parameter-function-map-biased-to-simple/</link>

<pubDate>Tue, 08 Sep 2020 07:29:09 -0600</pubDate>

<guid>https://kylrth.com/paper/parameter-function-map-biased-to-simple/</guid>

<description>The theoretical value in talking about the parameter-function map is that this map lets us talk about sets of parameters that produce the same function. In this paper they used some recently proven stuff from algorithmic information theory (AIT) to show that for neural networks the parameter-function map is biased toward functions with low Komolgorov complexity, meaning that simple functions are more likely to appear given random choice of parameters. Since real world problems are also biased toward simple functions, this could explain the generalization/memorization results found by Zhang et al.</description>

...

</item>

<item>

<title>A closer look at memorization in deep networks</title>

<link>https://kylrth.com/paper/closer-look-at-memorization/</link>

<pubDate>Mon, 31 Aug 2020 11:52:35 -0600</pubDate>

<guid>https://kylrth.com/paper/closer-look-at-memorization/</guid>

<description>This paper builds on what we learned in &ldquo;Understanding deep learning requires rethinking generalization&rdquo;. In that paper they showed that DNNs are able to fit pure noise in the same amount of time as it can fit real data, which means that our optimization algorithm (SGD, Adam, etc.) is not what&rsquo;s keeping DNNs from overfitting. experiments for detecting easy/hard samples It looks like there are qualitative differences between a DNN that has memorized some data and a DNN that has seen real data.</description>

...

</item>

<item>

<title>Why does unsupervised pre-training help deep learning?</title>

<link>https://kylrth.com/paper/why-unsupervised-helps/</link>

<pubDate>Mon, 24 Aug 2020 11:40:00 -0600</pubDate>

<guid>https://kylrth.com/paper/why-unsupervised-helps/</guid>

<description>They&rsquo;re pretty sure that it performs regularization by starting off the supervised training in a good spot, instead of by somehow improving the optimization path.</description>

...

</item>

<item>

<title>The consciousness prior</title>

<link>https://kylrth.com/paper/consciousness-prior/</link>

<pubDate>Fri, 14 Aug 2020 09:05:56 -0700</pubDate>

<guid>https://kylrth.com/paper/consciousness-prior/</guid>

<description>System 1 cognitive abilities are about low-level perception and intuitive knowledge. System 2 cognitive abilities can be described verbally, and include things like reasoning, planning, and imagination. In cognitive neuroscience, the &ldquo;Global Workspace Theory&rdquo; says that at each moment specific pieces of information become a part of working memory and become globally available to other unconscious computational processes. Relative to the unconscious state, the conscious state is low-dimensional, focusing on a few things.</description>

...

</item>

<item>

<title>Compositional generalization by factorizing alignment and translation</title>

<link>https://kylrth.com/paper/factorizing-alignment-and-translation/</link>

<pubDate>Mon, 27 Jul 2020 09:11:16 -0700</pubDate>

<guid>https://kylrth.com/paper/factorizing-alignment-and-translation/</guid>

<description>They had a biRNN with attention for alignment encoding, and then a single linear function of each one-hot encoded word for encoding that single word. Their reasoning was that by separating the alignment from the meaning of individual words the model could more easily generalize to unseen words.</description>

...

</item>

...