Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ML tutorial images #2786

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions docs/developer-docs/ai/machine-learning-sample.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ keywords: [intermediate, tutorial, machine learning, ml, mnist, rust]
---

import TabItem from "@theme/TabItem";
import useBaseUrl from "@docusaurus/useBaseUrl";
import { AdornedTabs } from "/src/components/Tabs/AdornedTabs";
import { AdornedTab } from "/src/components/Tabs/AdornedTab";
import { BetaChip } from "/src/components/Chip/BetaChip";
Expand Down Expand Up @@ -779,9 +780,9 @@ You will see the MNIST sample interface:

<div class="text--center">
<img
src="/docs/current/developer-docs/ai/_attachments/MNIST1.png"
src={useBaseUrl("/img/docs/MNIST1.png")}
alt="MNIST frontend UI"
width="600"
width="800"
/>
</div>

Expand All @@ -795,9 +796,9 @@ For example, draw the number 7:

<div class="text--center">
<img
src="/docs/current/developer-docs/ai/_attachments/MNIST2.png"
src={useBaseUrl("/img/docs/MNIST2.png")}
alt="MNIST drawing number 7"
width="600"
width="800"
/>
</div>

Expand All @@ -807,17 +808,17 @@ You can play with this model by drawing different numbers:

<div class="text--center">
<img
src="/docs/current/developer-docs/ai/_attachments/MNIST3.png"
src={useBaseUrl("/img/docs/MNIST3.png")}
alt="MNIST drawing number 0"
width="600"
width="800"
/>
</div>

<div class="text--center">
<img
src="/docs/current/developer-docs/ai/_attachments/MNIST4.png"
src={useBaseUrl("/img/docs/MNIST4.png")}
alt="MNIST drawing number 8"
width="600"
width="800"
/>
</div>

Expand Down
Loading