Skip to content

Commit fa40db4

Browse files
authored
pull base content,head:wwlpublishsync,into:51002fee3029387e0935e2f5952572bbb4c2c80daafdbb00547f794808314b52-live
2 parents 1b65497 + 2fdf232 commit fa40db4

File tree

28 files changed

+312
-78
lines changed

28 files changed

+312
-78
lines changed
448 KB
Loading

learn-pr/achievements/get-started-data-science-fabric.svg

Lines changed: 199 additions & 0 deletions
Loading
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
### YamlMime:LearningPath
2+
uid: learn.wwl.introduction-microsoft-azure-management-tasks
3+
metadata:
4+
title: Introduction to Microsoft Azure Management Tasks
5+
description: This learning path helps you explore basic management tasks for Azure resources. You'll have the opportunity to learn about managing virtual machines, virtual networks, and storage accounts, and then a guided project will give you hands-on experience actually managing Azure resources.
6+
ms.date: 07/04/2025
7+
author: wwlpublish
8+
ms.author: robbarefoot
9+
ms.topic: learning-path
10+
title: Introduction to Microsoft Azure Management tasks
11+
prerequisites: |
12+
- Basic understanding of cloud computing.
13+
- Basic understanding of Microsoft Azure services such as compute, storage, and networking.
14+
- An active Microsoft Azure subscription.
15+
summary: |
16+
This learning path helps you explore basic management tasks for Azure resources. You'll have the opportunity to learn about managing virtual machines, virtual networks, and storage accounts, and then a guided project will give you hands-on experience actually managing Azure resources.
17+
iconUrl: /training/achievements/generic-trophy.svg
18+
levels:
19+
- beginner
20+
roles:
21+
- business-user
22+
products:
23+
- azure
24+
subjects:
25+
- architecture
26+
- cloud-computing
27+
- infrastructure
28+
- networking
29+
- resource-management
30+
- virtual-machine
31+
modules:
32+
- learn.wwl.describe-microsoft-azure-resources-management
33+
trophy:
34+
uid: learn.wwl.introduction-microsoft-azure-management-tasks.trophy

learn-pr/tensorflow/intro-machine-learning-keras/1-introduction.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ title: Introduction
44
metadata:
55
title: Introduction
66
description: Learn about Keras, a high-level API for the TensorFlow machine learning framework.
7-
author: bstollnitz
8-
ms.author: bstollnitz
9-
ms.date: 07/17/2023
7+
author: robmcm
8+
ms.author: robmcm
9+
ms.date: 06/23/2025
1010
ms.topic: unit
1111
ms.product: learning-tensorflow
1212
ms.contributors:

learn-pr/tensorflow/intro-machine-learning-keras/2-data.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ title: Data
44
metadata:
55
title: Data
66
description: Learn how to get your data ready for use by a neural network.
7-
ms.date: 07/17/2023
8-
author: bstollnitz
9-
ms.author: bstollnitz
7+
ms.date: 06/23/2025
8+
author: robmcm
9+
ms.author: robmcm
1010
ms.topic: unit
1111
ms.product: learning-tensorflow
1212
ms.contributors:
@@ -23,13 +23,13 @@ quiz:
2323
choices:
2424
- content: "We didn't need to. For a small amount of data like in this sample, we could just use NumPy arrays."
2525
isCorrect: false
26-
explanation: "This is true, but other options are also true."
26+
explanation: "This option is true, but other options are also true."
2727
- content: "It's a good idea to learn about it, especially if we're going to work with larger data in the future."
2828
isCorrect: false
29-
explanation: "This is true, but other options are also true."
29+
explanation: "This option is true, but other options are also true."
3030
- content: "Because it returns our data in batches of 64 images when we iterate over it, which we use later when training."
3131
isCorrect: false
32-
explanation: "This is true, but other options are also true."
33-
- content: "All of the above."
32+
explanation: "This option is true, but other options are also true."
33+
- content: "All of these options are true."
3434
isCorrect: true
3535
explanation: "Correct!"

learn-pr/tensorflow/intro-machine-learning-keras/3-neural-network.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ title: Neural network architecture
44
metadata:
55
title: Neural network architecture
66
description: Learn how to create a neural network using Keras and TensorFlow.
7-
ms.date: 07/17/2023
8-
author: bstollnitz
9-
ms.author: bstollnitz
7+
ms.date: 06/23/2025
8+
author: robmcm
9+
ms.author: robmcm
1010
ms.topic: unit
1111
ms.product: learning-tensorflow
1212
ms.contributors:

learn-pr/tensorflow/intro-machine-learning-keras/4-train.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ title: Training and testing the neural network
44
metadata:
55
title: Training and testing the neural network
66
description: Learn how to train your neural network using the training data, and how to evaluate it using the test data.
7-
ms.date: 07/17/2023
8-
author: bstollnitz
9-
ms.author: bstollnitz
7+
ms.date: 06/23/2025
8+
author: robmcm
9+
ms.author: robmcm
1010
ms.topic: unit
1111
ms.product: learning-tensorflow
1212
ms.contributors:

learn-pr/tensorflow/intro-machine-learning-keras/5-predict.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ title: Making a prediction
44
metadata:
55
title: Making a prediction
66
description: Learn how to make a prediction by using your trained neural network.
7-
ms.date: 07/17/2023
8-
author: bstollnitz
9-
ms.author: bstollnitz
7+
ms.date: 06/23/2025
8+
author: robmcm
9+
ms.author: robmcm
1010
ms.topic: unit
1111
ms.product: learning-tensorflow
1212
ms.contributors:
@@ -29,7 +29,7 @@ quiz:
2929
explanation: "Incorrect. Our model generalizes beyond the training data. In fact, it makes good predictions for test data."
3030
- content: "Only images in the training data or test data."
3131
isCorrect: false
32-
explanation: "Incorrect. You saw it work for test data that the model hadn't seen during training. You can imagine that it works similarly for other images it hasn't seen."
32+
explanation: "Incorrect. You saw it work for test data that the model didn't see during training. You can imagine that it works similarly for other images it didn't see."
3333
- content: "Any image, so long as it's in the format expected by the model."
3434
isCorrect: true
3535
explanation: "Correct! The more similar the prediction images are to the images in the training data, the better the predictions are."

learn-pr/tensorflow/intro-machine-learning-keras/6-summary.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ title: Summary
44
metadata:
55
title: Summary
66
description: Review what you learned about Keras and TensorFlow machine learning models.
7-
ms.date: 07/17/2023
8-
author: bstollnitz
9-
ms.author: bstollnitz
7+
ms.date: 06/23/2025
8+
author: robmcm
9+
ms.author: robmcm
1010
ms.topic: unit
1111
ms.product: learning-tensorflow
1212
ms.contributors: bstollnitz-08202021
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11

2-
TensorFlow is a popular framework for working with machine learning. This module covers Keras, which is a higher-level and user-friendly API that's released as part of TensorFlow. For many scenarios, the level of abstraction provided by Keras gives you all the functionality you need, without the complexity of the lower-level concepts of TensorFlow.
2+
TensorFlow is a popular framework for working with machine learning. This module covers Keras, which is a higher-level and user-friendly API released as part of TensorFlow. For many scenarios, the level of abstraction provided by Keras gives you all the functionality you need, without the complexity of the lower-level concepts of TensorFlow.
33

4-
At the end of this module, if you feel that you need more flexibility than Keras provides, then the fifth module of this learning path, *Intro to Machine Learning with TensorFlow*, shows how to reimplement a portion of the Keras code in this module using lower-level TensorFlow APIs.
4+
At the end of this module, if you feel that you need more flexibility than Keras provides, then the fifth module of this learning path, *Go beyond Keras: Customize with TensorFlow*, shows how to reimplement a portion of the Keras code in this module using lower-level TensorFlow APIs.
55

6-
Both this module and module five show how you can create a basic neural network using the Fashion MNIST dataset as a data source. You'll build a neural network that takes images of clothing as input, and then classifies them according to their contents, such as *Shirt*, *Coat*, or *Dress*.
6+
Both this module and module five show how you can create a basic neural network using the Fashion MNIST dataset as a data source. You're going to build a neural network that takes images of clothing as input, and then classifies them according to their contents, such as *Shirt*, *Coat*, or *Dress*.
77

88
For this module, we assume that you're comfortable with Python, but we don't assume any knowledge of Keras or TensorFlow.
99

1010
Let's get started!
1111

1212
## Learning objectives
13+
1314
- Learn to load and prepare data to be used in machine learning.
1415
- Learn to specify the architecture of a deep learning neural network.
1516
- Learn to train a neural network.
1617
- Learn to make a prediction by using a neural network.
1718

1819
## Prerequisites
20+
1921
- Knowledge of Python
2022
- Basic knowledge about how to use Jupyter Notebooks

0 commit comments

Comments
 (0)