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

Move mlmodel design and add alias #3817

Merged
merged 3 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion docs/data-ai/ai/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@ For other use cases, consider [creating custom functionality with a module](/ope

{{< alert title="Add support for other models" color="tip" >}}
ML models must be designed in particular shapes to work with the `mlmodel` [classification](/operate/reference/services/vision/mlmodel/) or [detection](/operate/reference/services/vision/mlmodel/) model of Viam's [vision service](/operate/reference/services/vision/).
See [ML Model Design](/operate/reference/advanced-modules/mlmodel-design/) to design a modular ML model service with models that work with vision.
See [ML Model Design](/data-ai/reference/mlmodel-design/) to design a modular ML model service with models that work with vision.
{{< /alert >}}
1 change: 1 addition & 0 deletions docs/data-ai/data/visualize.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ aliases:
- /data/visualize/
- /use-cases/sensor-data-visualize/
- /how-tos/sensor-data-visualize/
- /how-tos/configure-teleop-workspace/
viamresources: ["sensor", "data_manager"]
platformarea: ["data", "fleet"]
date: "2024-12-04"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Design your ML Models for Vision"
linkTitle: "ML Model Design"
linkTitle: "ML model service design"
weight: 60
type: "docs"
tags: ["data management", "ml", "model training", "vision"]
Expand All @@ -12,6 +12,7 @@ date: "2022-01-01"
# SME: Bijan Haney
aliases:
- /registry/advanced/mlmodel-design/
- /operate/reference/advanced-modules/mlmodel-design/
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably safe to not have this alias since it only existed for like 10 hours? :D Guess it doesn't hurt to keep it

---

The [Machine Learning (ML) model service](/data-ai/ai/deploy/) allow you to deploy machine learning models to your smart machine.
Expand Down
1 change: 1 addition & 0 deletions docs/operate/get-started/other-hardware/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ aliases:
- /build/program/extend/modular-resources/key-concepts/
- /modular-resources/key-concepts/
- /modular-resources/
- /how-tos/upload-module/
prev: "/operate/get-started/supported-hardware/"
next: "/operate/get-started/other-hardware/hello-world-module/"
---
Expand Down
2 changes: 1 addition & 1 deletion docs/operate/reference/advanced-modules/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ However, if you are unable to use modular resources because you need to host `vi

When working with the [ML model service](/dev/reference/apis/services/ml/), you can deploy an [existing model](/data-ai/ai/deploy/) or [train your own model](/data-ai/ai/train/).

However, if you are writing your own {{< glossary_tooltip term_id="module" text="module" >}} that uses the ML model service together with the [vision service](/dev/reference/apis/services/vision/), you can also [design your own ML model](/operate/reference/advanced-modules/mlmodel-design/) to better match your specific use case.
However, if you are writing your own {{< glossary_tooltip term_id="module" text="module" >}} that uses the ML model service together with the [vision service](/dev/reference/apis/services/vision/), you can also [design your own ML model](/data-ai/reference/mlmodel-design/) to better match your specific use case.
Loading