Skip to content

Commit 74ceb13

Browse files
committed
AB#1037347: Select and customize architectures and hyperparameters using random forest
1 parent 1ce118f commit 74ceb13

18 files changed

+63
-63
lines changed

learn-pr/azure/machine-learning-architectures-and-hyperparameters/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Introduction
88
description: Introduction to the introduction to regression module.
9-
ms.date: 07/21/2024
9+
ms.date: 03/24/2025
1010
author: s-polly
1111
ms.author: scottpolly
1212
ms.topic: unit

learn-pr/azure/machine-learning-architectures-and-hyperparameters/2-decision-trees.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Decision trees and model architecture
88
description: Conceptual unit about decision trees and model architecture
9-
ms.date: 07/21/2024
9+
ms.date: 03/24/2025
1010
author: s-polly
1111
ms.author: scottpolly
1212
ms.topic: unit

learn-pr/azure/machine-learning-architectures-and-hyperparameters/3-exercise-decision-trees.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Exercise - Decision trees and model architecture
88
description: Learn how to build a simple model.
9-
ms.date: 07/21/2024
9+
ms.date: 03/24/2025
1010
author: s-polly
1111
ms.author: scottpolly
1212
ms.topic: unit

learn-pr/azure/machine-learning-architectures-and-hyperparameters/4-random-forests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Random forests and selecting architectures
88
description: Conceptual unit about random forests and selecting architectures
9-
ms.date: 07/21/2024
9+
ms.date: 03/24/2025
1010
author: s-polly
1111
ms.author: scottpolly
1212
ms.topic: unit

learn-pr/azure/machine-learning-architectures-and-hyperparameters/5-exercise-random-forests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Exercise - Selecting random forest architectures
88
description: Exercise about selecting random forest architectures
9-
ms.date: 07/21/2024
9+
ms.date: 03/24/2025
1010
author: s-polly
1111
ms.author: scottpolly
1212
ms.topic: unit

learn-pr/azure/machine-learning-architectures-and-hyperparameters/6-hyperparameters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Hyperparameters in classification
88
description: Conceptual unit about hyperparameters in classification
9-
ms.date: 07/21/2024
9+
ms.date: 03/24/2025
1010
author: s-polly
1111
ms.author: scottpolly
1212
ms.topic: unit

learn-pr/azure/machine-learning-architectures-and-hyperparameters/7-exercise-hyperparameters-tuning.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Exercise - Hyperparameter tuning with random forests
88
description: Exercise about hyperparameter tuning with random forests
9-
ms.date: 07/21/2024
9+
ms.date: 03/24/2025
1010
author: s-polly
1111
ms.author: scottpolly
1212
ms.topic: unit

learn-pr/azure/machine-learning-architectures-and-hyperparameters/8-knowledge-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Knowledge check
88
description: Multiple-choice questions
9-
ms.date: 07/21/2024
9+
ms.date: 03/24/2025
1010
author: s-polly
1111
ms.author: scottpolly
1212
ms.topic: unit
@@ -27,7 +27,7 @@ quiz:
2727
explanation: "Correct."
2828
- content: 'What does selecting model architectures mean?'
2929
choices:
30-
- content: "Picking a models parameter values before training"
30+
- content: "Picking a model's parameter values before training"
3131
isCorrect: false
3232
explanation: "Incorrect."
3333
- content: "Deciding how a model is structured"

learn-pr/azure/machine-learning-architectures-and-hyperparameters/9-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
prefetch-feature-rollout: true
77
title: Summary
88
description: An overview of the content covered in the module.
9-
ms.date: 07/21/2024
9+
ms.date: 03/24/2025
1010
author: s-polly
1111
ms.author: scottpolly
1212
ms.topic: unit

learn-pr/azure/machine-learning-architectures-and-hyperparameters/includes/1-introduction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
Not all models are simple mathematical equations that can be plotted as a line. Instead, some complex models are easier thought of more like flow charts or traditional programming structures. Such models usually have extra levels of customization available, which can make them more powerful, though also trickier to work with. Throughout these exercises, we'll explore this by manipulating how models work and are trained. Although we'll focus on one type of model, the general principles taught here apply to many other model types as well.
1+
Not all models are simple mathematical equations that can be plotted as a line. Instead, it's easier to think of some complex models as more like flow charts or traditional programming structures. Such models usually have extra levels of customization available, which can make them more powerful, but also trickier to work with. Throughout these exercises, we'll explore this concept by manipulating how models work and are trained. Although we'll focus on one type of model, the general principles we cover here apply to many other model types as well.
22

33
## Scenario: Predicting sports results using machine learning
44

5-
Throughout this module, we'll refer to the following example scenario as we explain concepts surrounding model architecture and hyperparameters. This scenario is designed to appear complex at first, but as the exercises progress we'll learn how you can tackle it using a little critical thinking and experimentation.
5+
Throughout this module, we'll refer to the following example scenario as we explain concepts surrounding model architecture and hyperparameters. This scenario is designed to appear complex at first, but as the exercises progress, we'll learn how you can tackle it using a little critical thinking and experimentation.
66

7-
The Games' motto consists of three Latin words: Citius - Altius - Fortius. These words mean Faster - Higher - Stronger. Since this motto was established, the variety of games has grown enormously to include shooting, sailing, and team sports. We'd like to explore the role that basic physical features still play in predicting who wins a medal at one of the most prestigious sporting events on the planet. To this end, we'll explore rhythmic gymnastics: a modern addition to the games that combines dance, gymnastics, and calisthenics. One might expect that basic characteristics of age, height, and weight play only a limited role, given the need for agility, flexibility, dexterity, and coordination. Let's use some more advanced machine learning models to see how critical these basic factors really are.
7+
The Olympic Games' motto consists of three Latin words: *Citius, Altius, Fortius*. These words mean *Faster, Higher, Stronger*. Since this motto was established, the variety of games has grown enormously to include shooting, sailing, and team sports. We'd like to explore the role that basic physical features still play in predicting who wins a medal at one of the most prestigious sporting events on the planet. To this end, we'll explore rhythmic gymnastics: a modern addition to the games that combines dance, gymnastics, and calisthenics. One might expect that basic characteristics of age, height, and weight play only a limited role, given the need for agility, flexibility, dexterity, and coordination. Let's use some more advanced machine learning models to see how critical these basic factors really are.
88

99
## Prerequisites
1010

0 commit comments

Comments
 (0)