Open In Colab   Open in Kaggle

Intro#

Overview#

Today’s materials will provide an overview of data science and machine learning and how these topics can be applied to topics related to climate science and climate change. Particularly, you will explore a Earth System Model based data set that contains temperature, precipitation, and anthropogenic emission variables over a time span of half a century. Furthermore, you will learn how to set up machine learning models that can predict output values and categorize data.

Day Learning Objectives#

  • See how machine learning and AI can be used to address many different problems associated with climate change.

  • Understand the basic principles of machine learning.

  • Apply a basic machine learning technique to the problem of rising temperatures.

  • Identify the pros and cons of applying machine learning methods in this domain.

Install and import feedback gadget#

Hide code cell source
# @title Install and import feedback gadget

!pip3 install vibecheck datatops --quiet

from vibecheck import DatatopsContentReviewContainer
def content_review(notebook_section: str):
    return DatatopsContentReviewContainer(
        "",  # No text prompt
        notebook_section,
        {
            "url": "https://pmyvdlilci.execute-api.us-east-1.amazonaws.com/klab",
            "name": "comptools_4clim",
            "user_key": "l5jpxuee",
        },
    ).render()


feedback_prefix = "W2D4_Intro"

Video 1: Climate Change Impacts on the SDGs and the Role of AI#

Submit your feedback#

Hide code cell source
# @title Submit your feedback
content_review(f"{feedback_prefix}_Climate_Change_Impacts_Video")

Slides#

If you want to download the slides: https://osf.io/download/rqst6/

Submit your feedback#

Hide code cell source
# @title Submit your feedback
content_review(f"{feedback_prefix}_Climate_Change_Impacts_Slides")