Skip to content

Commit 10b5697

Browse files
Corrected heading size
1 parent e05343a commit 10b5697

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Edge AI on Arm: PyTorch and ExecuTorch Rock Paper Scissors"
2+
title: "Edge AI on Arm: PyTorch and ExecuTorch rock-paper-scissors"
33

44
minutes_to_complete: 60
55

content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/env-setup-1.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@ weight: 2
66
layout: learningpathall
77
---
88

9-
## Set up your environment for Tiny Rock, Paper, Scissors on Arm (PyTorch + ExecuTorch)
9+
## Set up your environment for Tiny rock-paper-scissors on Arm
1010

11-
12-
13-
This Learning Path is a direct follow-up to [Introduction to TinyML on Arm using PyTorch and ExecuTorch](/learning-paths/embedded-and-microcontrollers/introduction-to-tinyml-on-arm). While the previous Learning Path introduced the core concepts and toolchain, this one puts that knowledge into practice with a small, real-world example. You move from a simple [Feedforward Neural Network](/learning-paths/embedded-and-microcontrollers/introduction-to-tinyml-on-arm/4-build-model) to a practical computer vision task: a tiny Rock-Paper-Scissors game that runs efficiently on Arm-based edge devices.
11+
This Learning Path is a direct follow-up to [Introduction to TinyML on Arm using PyTorch and ExecuTorch](/learning-paths/embedded-and-microcontrollers/introduction-to-tinyml-on-arm). While the previous Learning Path introduced the core concepts and toolchain, this one puts that knowledge into practice with a small, real-world example. You move from a simple [Feedforward Neural Network](/learning-paths/embedded-and-microcontrollers/introduction-to-tinyml-on-arm/4-build-model) to a practical computer vision task: a tiny rock-paper-scissors game that runs efficiently on Arm-based edge devices.
1412

1513
You will train a lightweight CNN to classify images of the letters R, P, and S as "rock," "paper," or "scissors." The script uses a synthetic data renderer to create a large dataset of these images with various transformations and noise, eliminating the need for a massive real-world dataset.
1614

content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/fine-tune-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Train and Test the Rock-Paper-Scissors Model
2+
title: Train and Test the rock-paper-scissors Model
33
weight: 3
44

55
### FIXED, DO NOT MODIFY

content/learning-paths/embedded-and-microcontrollers/training-inference-pytorch/fvp-3.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ weight: 4
66
layout: learningpathall
77
---
88

9-
# Compile and run the rock-paper-scissors model on Corstone-320 FVP
9+
## Compile and run the rock-paper-scissors model on Corstone-320 FVP
1010

11-
This section shows how to compile your trained Rock, Paper, Scissors model and run it on the Corstone-320 Fixed Virtual Platform (FVP), a simulated Arm-based edge device. This completes the end-to-end workflow for deploying a TinyML model for on-device inference.
11+
This section shows how to compile your trained rock-paper-scissors model and run it on the Corstone-320 Fixed Virtual Platform (FVP), a simulated Arm-based edge device. This completes the end-to-end workflow for deploying a TinyML model for on-device inference.
1212

1313
## Compile and build the executable
1414

@@ -75,7 +75,7 @@ Build the executable:
7575
cmake --build "$ET_HOME/examples/arm/executor_runner/cmake-out" -j --target arm_executor_runner
7676
```
7777

78-
### Run the model on the FVP
78+
## Run the model on the FVP
7979
With the `arm_executor_runner` executable ready, you can now run it on the Corstone-320 FVP to see the model on a simulated Arm device.
8080

8181
```bash

0 commit comments

Comments
 (0)