<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: jcreinhold</title><link>https://news.ycombinator.com/user?id=jcreinhold</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 24 May 2026 20:59:20 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=jcreinhold" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by jcreinhold in "Alexander Grothendieck Revolutionized 20th-Century Mathematics"]]></title><description><![CDATA[
<p>If anyone's interested in Grothendieck's writing, which is primarily in French, I threw his "Séminaires de Géométrie Algébrique" (SGA, Algebraic Geometry Seminars) and "Éléments de Géométrie Algébrique" (EGA, Elements of Algebraic Geometry) into an LLM to translate it to English. It's spotty in some sections, so I intend to do another pass, but it's better than my remedial French.<p>EGA: <a href="https://github.com/jcreinhold/ega" rel="nofollow">https://github.com/jcreinhold/ega</a> (<a href="https://jcreinhold.github.io/ega/" rel="nofollow">https://jcreinhold.github.io/ega/</a>)<p>SGA: <a href="https://github.com/jcreinhold/sga" rel="nofollow">https://github.com/jcreinhold/sga</a> (<a href="https://jcreinhold.github.io/sga/" rel="nofollow">https://jcreinhold.github.io/sga/</a>)</p>
]]></description><pubDate>Sun, 24 May 2026 11:16:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=48256346</link><dc:creator>jcreinhold</dc:creator><comments>https://news.ycombinator.com/item?id=48256346</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48256346</guid></item><item><title><![CDATA[New comment by jcreinhold in "The apps that Americans search to “delete” the most"]]></title><description><![CDATA[
<p>Thanks for this. I was looking for someone to comment on this point.<p>The list of apps that people most "want to delete" is highly correlated with apps with the list of apps with the most MAUs.<p>The right thing to look at here is the percentage of users who want to delete the app. Otherwise this table is just telling us that Instagram has more users than other apps—e.g., 1% of 1 billion > 1% of 1 million—which I suspect most people already know.</p>
]]></description><pubDate>Wed, 08 Mar 2023 18:06:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=35072497</link><dc:creator>jcreinhold</dc:creator><comments>https://news.ycombinator.com/item?id=35072497</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35072497</guid></item><item><title><![CDATA[New comment by jcreinhold in "Brain of a White-Collar Worker (2007)"]]></title><description><![CDATA[
<p>For people not familiar with what a healthy brain looks like in a CT image, here [1] is a reference.<p>Fig. A in the original post corresponds to the same view (axial) of the brain as shown in the first image in [1].<p>The dark cashew-shaped blobs in the center of the healthy image in [1] correspond to what's labeled LV (for "lateral ventricles") in the original post. These cavities are filled with a fluid called cerebrospinal fluid (CSF) which serves to protect and clear waste from the brain.<p>Other examples of enlarged ventricles can be found, e.g., with a disease called  normal pressure hydrochephalus (NPH) (example here: [2]).<p>So, needless to say, this case of ventricular enlargement is extremely severe, even compared to NPH.<p>[1] <a href="https://radiopaedia.org/cases/normal-ct-brain" rel="nofollow">https://radiopaedia.org/cases/normal-ct-brain</a><p>[2] <a href="https://i1.wp.com/myneurosurg.com/wp-content/uploads/2017/11/pe-nph_fig3.jpg?resize=340%2C215&ssl=1" rel="nofollow">https://i1.wp.com/myneurosurg.com/wp-content/uploads/2017/11...</a></p>
]]></description><pubDate>Sun, 23 Jan 2022 23:48:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=30051940</link><dc:creator>jcreinhold</dc:creator><comments>https://news.ycombinator.com/item?id=30051940</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30051940</guid></item><item><title><![CDATA[New comment by jcreinhold in "How to Choose a Neutral Net Architecture for Medical Image Segmentation"]]></title><description><![CDATA[
<p>One of the authors here.<p>I agree that most of the value in a clinical application won't come from the often (but not always) relatively small performance gains by tweaking your neural network architecture or fiddling with the loss function. Collecting a high-quality and diverse dataset is important for training and arguably even more important for validation because you want to show that the deployed model is reliable.<p>But before deploying a model, I'd argue that it is worth testing a few architectures out to determine if one is substantially better than the rest. It can be a pain to test out a bunch of architectures, but the ones we mention in the article have many implementations freely available (and we provide ones too!). So you can drop in one of these architectures and test them out pretty easily (especially if you skip hyperparameter tuning initially).<p>Spending too much time fussing over a 2-3% performance gain is silly, but sometimes, surprisingly, the difference in performance by choosing another architecture can be much greater. I wish I had more intuition as to why some architectures perform well and others don't. It would certainly make R&D easier if you could totally ignore the architecture choice.</p>
]]></description><pubDate>Wed, 29 Jul 2020 20:05:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=23990976</link><dc:creator>jcreinhold</dc:creator><comments>https://news.ycombinator.com/item?id=23990976</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23990976</guid></item><item><title><![CDATA[New comment by jcreinhold in "Building a CT Scan Covid-19 Classifier Using PyTorch"]]></title><description><![CDATA[
<p>Regarding smaller batch sizes and batch normalization: Have you found another normalization layer to work better for small batch sizes?<p>I agree that the mean and variance of the small batches won't be representative of the true mean and variance, but in practice, I've used batch norm for small batch sizes successfully (e.g., <8). In medical imaging, due to memory constraints, I commonly see batch sizes of 2 (or even 1, although it's not really "batch norm" at that point).<p>The paper "Revisiting small batch training for deep neural networks" [1] discusses the benefits of small batch sizes even in the presence of batch norm (see Fig. 13, 14). They only look at some standard CV datasets, so it isn't conclusive by any means, but the experimental results jive with my experience and what appears to be other researchers experience.<p>[1] <a href="https://arxiv.org/pdf/1804.07612.pdf" rel="nofollow">https://arxiv.org/pdf/1804.07612.pdf</a></p>
]]></description><pubDate>Mon, 06 Jul 2020 17:17:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=23750085</link><dc:creator>jcreinhold</dc:creator><comments>https://news.ycombinator.com/item?id=23750085</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23750085</guid></item><item><title><![CDATA[New comment by jcreinhold in "Introduction to Stochastic Processes [pdf]"]]></title><description><![CDATA[
<p>I took this class a few years ago. Prof. Žitković is a fantastic teacher.<p>There is a set of more recent lecture notes here, <a href="https://web.ma.utexas.edu/users/gordanz/lecture_notes_page.html" rel="nofollow">https://web.ma.utexas.edu/users/gordanz/lecture_notes_page.h...</a>, under the "Introduction to Stochastic Processes" section, FYI.</p>
]]></description><pubDate>Sun, 15 Dec 2019 19:32:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=21798385</link><dc:creator>jcreinhold</dc:creator><comments>https://news.ycombinator.com/item?id=21798385</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=21798385</guid></item></channel></rss>