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 path to azure-ml images #408

Merged
merged 1 commit into from
Oct 16, 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
26 changes: 13 additions & 13 deletions docs/user_guides/integrations/mlstudio_designer.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To connect to the Feature Store from the Azure Machine Learning Designer, create

<p align="center">
<figure>
<img src="../../../../assets/images/guides/integrations/azure/designer/step-1.png" alt="Add an Execute Python Script step">
<img src="../../../assets/images/guides/integrations/azure/designer/step-1.png" alt="Add an Execute Python Script step">
<figcaption>Add an Execute Python Script step</figcaption>
</figure>
</p>
Expand All @@ -30,7 +30,7 @@ In the pipeline, add a new `Execute Python Script` step and replace the Python s

<p align="center">
<figure>
<img src="../../../../assets/images/guides/integrations/azure/designer/step-2.png" alt="Add the code to access the Feature Store">
<img src="../../../assets/images/guides/integrations/azure/designer/step-2.png" alt="Add the code to access the Feature Store">
<figcaption>Add the code to access the Feature Store</figcaption>
</figure>
</p>
Expand All @@ -39,12 +39,12 @@ In the pipeline, add a new `Execute Python Script` step and replace the Python s

Replace MY_VERSION, MY_API_KEY, MY_INSTANCE, MY_PROJECT and MY_FEATURE_GROUP with the respective values. The major version set for MY_VERSION needs to match the major version of Hopsworks. Check [PyPI](https://pypi.org/project/hsfs/#history) for available releases.

<p align="center">
<figure>
<img src="../../../assets/images/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
<figcaption>You find the Hopsworks version inside any of your Project's settings tab on Hopsworks</figcaption>
</figure>
</p>
<p align="center">
<figure>
<img src="../../../assets/images/hopsworks-version.png" alt="HSFS version needs to match the major version of Hopsworks">
<figcaption>You find the Hopsworks version inside any of your Project's settings tab on Hopsworks</figcaption>
</figure>
</p>

```python
import os
Expand Down Expand Up @@ -85,7 +85,7 @@ Select a compute target and save the step. The step is now ready to use:

<p align="center">
<figure>
<img src="../../../../assets/images/guides/integrations/azure/designer/step-3.png" alt="Select a compute target">
<img src="../../../assets/images/guides/integrations/azure/designer/step-3.png" alt="Select a compute target">
<figcaption>Select a compute target</figcaption>
</figure>
</p>
Expand All @@ -94,7 +94,7 @@ As a next step, you have to connect the previously created `Execute Python Scrip

<p align="center">
<figure>
<img src="../../../../assets/images/guides/integrations/azure/designer/step-4.png" alt="Add an Export Data step">
<img src="../../../assets/images/guides/integrations/azure/designer/step-4.png" alt="Add an Export Data step">
<figcaption>Add an Export Data step</figcaption>
</figure>
</p>
Expand All @@ -103,7 +103,7 @@ Configure the `Export Data` step to write to you data store of choice:

<p align="center">
<figure>
<img src="../../../../assets/images/guides/integrations/azure/designer/step-5.png" alt="Configure the Export Data step">
<img src="../../../assets/images/guides/integrations/azure/designer/step-5.png" alt="Configure the Export Data step">
<figcaption>Configure the Export Data step</figcaption>
</figure>
</p>
Expand All @@ -112,7 +112,7 @@ Connect the to steps by drawing a line between them:

<p align="center">
<figure>
<img src="../../../../assets/images/guides/integrations/azure/designer/step-6.png" alt="Connect the steps">
<img src="../../../assets/images/guides/integrations/azure/designer/step-6.png" alt="Connect the steps">
<figcaption>Connect the steps</figcaption>
</figure>
</p>
Expand All @@ -125,7 +125,7 @@ Finally, submit the pipeline and wait for it to finish:

<p align="center">
<figure>
<img src="../../../../assets/images/guides/integrations/azure/designer/step-7.png" alt="Execute the pipeline">
<img src="../../../assets/images/guides/integrations/azure/designer/step-7.png" alt="Execute the pipeline">
<figcaption>Execute the pipeline</figcaption>
</figure>
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/user_guides/integrations/mlstudio_notebooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To access the Feature Store from Azure Machine Learning, open a Python notebook

<p align="center">
<figure>
<img src="../../../../assets/images/guides/integrations/azure/notebooks/step-1.png" alt="Connecting from an Azure Machine Learning Notebook">
<img src="../../../assets/images/guides/integrations/azure/notebooks/step-1.png" alt="Connecting from an Azure Machine Learning Notebook">
<figcaption>Connecting from an Azure Machine Learning Notebook</figcaption>
</figure>
</p>
Expand Down