From 8e87afa4054bff06673442099bee473d6da0f963 Mon Sep 17 00:00:00 2001 From: vicky Date: Sun, 22 Oct 2023 23:07:45 -0700 Subject: [PATCH] jekyll connection --- _sass/_ailessons.scss | 10 ++-- ai_ml_lesson.html | 126 ++++++++---------------------------------- 2 files changed, 28 insertions(+), 108 deletions(-) diff --git a/_sass/_ailessons.scss b/_sass/_ailessons.scss index 821d76ea..3da43b02 100644 --- a/_sass/_ailessons.scss +++ b/_sass/_ailessons.scss @@ -71,8 +71,8 @@ label { .two-by-two { display: grid; - grid-template-columns: 1fr; - grid-template-rows: repeat(4, 1fr); + grid-template-columns: repeat(2, minmax(0, 1fr)); + grid-template-rows: repeat(2, minmax(0, 1fr)); grid-gap: 20px; @media (min-width: 768px) { @@ -90,6 +90,7 @@ label { .lesson-w-chip { width: 100%; padding: 1.5rem; + height: 100%; display: flex; flex-direction: column; @@ -109,10 +110,12 @@ label { padding: 0; margin: 0; } +} - div { +.green-chips { display: flex; gap: 0.5rem; + flex-wrap: wrap; div { background-color: #016d3a; color: white; @@ -122,7 +125,6 @@ label { font-size: 14px; } - } } .lesson-triple-col { diff --git a/ai_ml_lesson.html b/ai_ml_lesson.html index 6cc51cb0..0e943079 100644 --- a/ai_ml_lesson.html +++ b/ai_ml_lesson.html @@ -91,83 +91,25 @@

Learning goals

Lessons

+ {% for lesson in site.aiml %}
-

What is AI

-

- You’ve probably heard of Artificial Intelligence in the news. But what - exactly is AI? -

-
-
slides
-
worksheet
-
-
-
-

What is AI

-

- You’ve probably heard of Artificial Intelligence in the news. But what - exactly is AI? -

-
-
slides
-
worksheet
-
-
-
-

What is AI

-

- You’ve probably heard of Artificial Intelligence in the news. But what - exactly is AI? -

-
-
slides
-
worksheet
-
-
-
-

What is AI

-

- You’ve probably heard of Artificial Intelligence in the news. But what - exactly is AI? -

-
-
slides
-
worksheet
-
-
-
-

What is AI

-

- You’ve probably heard of Artificial Intelligence in the news. But what - exactly is AI? -

-
-
slides
-
worksheet
-
-
-
-

What is AI

-

- You’ve probably heard of Artificial Intelligence in the news. But what - exactly is AI? -

-
-
slides
-
worksheet
-
-
-
-

What is AI

-

- You’ve probably heard of Artificial Intelligence in the news. But what - exactly is AI? -

-
-
slides
-
worksheet
+

{{lesson.title}}

+ {% if lesson.excerpt %} + {{lesson.excerpt}} + {% endif %} +
+ {% if lesson.slides_link %} +
slides
+ {% endif %} + {% if lesson.homework_link %} +
worksheet
+ {% endif %} + {% if lesson.colab_link %} +
colab
+ {% endif %}
+ {% endfor %}
@@ -178,40 +120,16 @@

More resources

These are our favorite AI/ML resources - they're all awesome!

+ {% for subcategory in site.data.curriculum_resources.aiml %}
-

ACM AI Resources

-
    -
  • You Belong in AI! Podcast
  • -
  • ACM AI Blog
  • -
  • Plotting Data Notebook
  • -
  • MNIST Dataset with Keras Notebook (Archer School Event)
  • -
  • Intro to Deep Learning
  • -
-
-
-

Intro to Deep Learning

+

{{subcategory.title}}

    -
  • Coursera: Deep Learning Specialization
  • -
  • The Deep Learning Textbook
  • -
  • 3Blue1Brown: Neural Networks
  • -
  • Udacity: Intro to Deep Learning with TensorFlow
  • + {% for item in subcategory.items %} +
  • {{item.name}}
  • + {% endfor %}
-
-

Tensorflow and Pytorch

-
    -
  • UC Berkeley: CS294 Tensorflow Tutorial
  • -
  • UC Berkeley: CS285 (Deep Reinforcement Learning) Resources
  • -
  • Pytorch: Getting Started with Pytorch
  • -
-
-
-

Intro to Machine Learning

-
    -
  • Coursera: Introduction to Machine Learning
  • -
  • Hal Daumé III: A Course in Machine Learning
  • -
  • Google: Machine Learning Crash Course
  • -
+ {% endfor %}