<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Code details | Deep Learning with R</title>
    <link>https://bios691-deep-learning-r-2025.netlify.app/assignment/</link>
      <atom:link href="https://bios691-deep-learning-r-2025.netlify.app/assignment/index.xml" rel="self" type="application/rss+xml" />
    <description>Code details</description>
    <generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator><language>en</language><copyright>MGD</copyright>
    <image>
      <url>https://bios691-deep-learning-r-2025.netlify.app/img/social-image.png</url>
      <title>Code details</title>
      <link>https://bios691-deep-learning-r-2025.netlify.app/assignment/</link>
    </image>
    
    <item>
      <title>Code 2</title>
      <link>https://bios691-deep-learning-r-2025.netlify.app/assignment/02-problem-set/</link>
      <pubDate>Wed, 29 Jan 2025 00:00:00 +0000</pubDate>
      <guid>https://bios691-deep-learning-r-2025.netlify.app/assignment/02-problem-set/</guid>
      <description>


&lt;div id=&#34;mnist-classification&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;MNIST classification&lt;/h1&gt;
&lt;p&gt;Sequential neural network for MNIST handwritten digits classification, batch size, learning rate, callbacks, regularization, model capacity, hyperparameter tuning.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Download &lt;a href=&#34;../../slides/code/02-starter-recipe_code.Rmd&#34;&gt;02-starter-recipe_code.Rmd&lt;/a&gt;. Modified from &lt;a href=&#34;https://github.com/rstudio-conf-2020/dl-keras-tf&#34;&gt;dl-keras-tf&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Download &lt;a href=&#34;../../slides/code/02-starter-recipe_images.zip&#34;&gt;02-starter-recipe_images.zip&lt;/a&gt;. Extract the &lt;code&gt;images&lt;/code&gt; folder in the same directory as the &lt;code&gt;02-starter-recipe_code.Rmd&lt;/code&gt; file.&lt;/li&gt;
&lt;li&gt;Read and run the code in the &lt;code&gt;02-starter-recipe_code.Rmd&lt;/code&gt; file. Consult ChatGPT in case of errors.&lt;/li&gt;
&lt;li&gt;Answer questions in the code chunks labeled “Your turn!” and describe your observations.&lt;/li&gt;
&lt;li&gt;Knit the document into an HTML format and submit the knitted document.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Code 3</title>
      <link>https://bios691-deep-learning-r-2025.netlify.app/assignment/03-problem-set/</link>
      <pubDate>Wed, 29 Jan 2025 00:00:00 +0000</pubDate>
      <guid>https://bios691-deep-learning-r-2025.netlify.app/assignment/03-problem-set/</guid>
      <description>


&lt;div id=&#34;deep-learning-regression-exercise&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Deep learning regression exercise&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;Download &lt;a href=&#34;../../slides/code/03_Ames_house_price.Rmd&#34;&gt;03_Ames_house_price.Rmd&lt;/a&gt;. Modified from &lt;a href=&#34;https://github.com/rstudio-conf-2020/dl-keras-tf&#34;&gt;dl-keras-tf&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Read and run the code in the &lt;code&gt;03_Ames_house_price.Rmd&lt;/code&gt; file. Consult ChatGPT in case of errors.&lt;/li&gt;
&lt;li&gt;Set &lt;code&gt;eval = TRUE&lt;/code&gt; and answer questions in the code chunks labeled “Question:” and describe your observations.&lt;/li&gt;
&lt;li&gt;Knit the document into an HTML format and submit the knitted document.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Code 1</title>
      <link>https://bios691-deep-learning-r-2025.netlify.app/assignment/01-problem-set/</link>
      <pubDate>Mon, 27 Jan 2025 00:00:00 +0000</pubDate>
      <guid>https://bios691-deep-learning-r-2025.netlify.app/assignment/01-problem-set/</guid>
      <description>


&lt;!-- # In-class, [deep-learning-with-r-notebooks](https://github.com/jjallaire/deep-learning-with-r-notebooks) --&gt;
&lt;!-- - `2.1-a-first-look-at-a-neural-network.Rmd` - MNIST, feedforward DNN --&gt;
&lt;div id=&#34;self-study&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Self-study&lt;/h1&gt;
&lt;p&gt;Neural network introduction, main ingredients, activation function, gradient descent, learning rate, ReLU, train-test-validation, prediction&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Follow installation instructions in &lt;a href=&#34;../../slides/code/installation_code.R&#34;&gt;installation_code.R&lt;/a&gt;. Note we are installing the &lt;a href=&#34;https://keras3.posit.co/&#34;&gt;keras3&lt;/a&gt; package.&lt;/li&gt;
&lt;li&gt;Download &lt;a href=&#34;../../slides/code/01-main-ingredients_code.Rmd&#34;&gt;01-main-ingredients_code.Rmd&lt;/a&gt;. Modified from &lt;a href=&#34;https://github.com/rstudio-conf-2020/dl-keras-tf&#34;&gt;dl-keras-tf&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Download &lt;a href=&#34;../../slides/code/01-main-ingredients_images.zip&#34;&gt;01-main-ingredients_images.zip&lt;/a&gt;. Extract the &lt;code&gt;images&lt;/code&gt; folder in the same directory as the &lt;code&gt;01-main-ingredients_code.Rmd&lt;/code&gt; file.&lt;/li&gt;
&lt;li&gt;Read and run the code in the &lt;code&gt;01-main-ingredients_code.Rmd&lt;/code&gt; file. Consult ChatGPT in case of errors.&lt;/li&gt;
&lt;li&gt;Answer questions in the code chunks currently set to &lt;code&gt;eval=FALSE&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Knit the document into an HTML format and submit the knitted document.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Code 5</title>
      <link>https://bios691-deep-learning-r-2025.netlify.app/assignment/05-problem-set/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://bios691-deep-learning-r-2025.netlify.app/assignment/05-problem-set/</guid>
      <description>

&lt;div id=&#34;TOC&#34;&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#computer-vision-mnist-revisted-as-a-cnn&#34; id=&#34;toc-computer-vision-mnist-revisted-as-a-cnn&#34;&gt;Computer Vision: MNIST revisted as a CNN&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;div id=&#34;computer-vision-mnist-revisted-as-a-cnn&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;Computer Vision: MNIST revisted as a CNN&lt;/h1&gt;
&lt;p&gt;Convolutional neural network for MNIST handwritten digits classification.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Download &lt;a href=&#34;../../slides/code/ch08_1_MNIST_classification_CNN_code.Rmd&#34;&gt;ch08_1_MNIST_classification_CNN_code.Rmd&lt;/a&gt;. Modified from &lt;a href=&#34;https://github.com/rstudio-conf-2020/dl-keras-tf&#34;&gt;dl-keras-tf&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Download &lt;a href=&#34;../../slides/code/ch08_1_MNIST_classification_CNN_images.zip&#34;&gt;ch08_1_MNIST_classification_CNN_images.zip&lt;/a&gt;. Extract the &lt;code&gt;images&lt;/code&gt; folder in the same directory as the &lt;code&gt;ch08_1_MNIST_classification_CNN_code.Rmd&lt;/code&gt; file.&lt;/li&gt;
&lt;li&gt;Read and run the code in the &lt;code&gt;ch08_1_MNIST_classification_CNN_code.Rmd&lt;/code&gt; file. Consult ChatGPT in case of errors.&lt;/li&gt;
&lt;li&gt;Answer questions in the code chunks labeled “Questions” and describe your observations.&lt;/li&gt;
&lt;li&gt;Knit the document into an HTML format and submit the knitted document.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
</description>
    </item>
    
  </channel>
</rss>
