Skip to content

Commit 331cea8

Browse files
committed
image updates
1 parent f70535e commit 331cea8

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed
10.9 KB
Loading
54 KB
Loading
-7.88 KB
Loading
Loading
Loading
-179 KB
Loading

articles/cognitive-services/Anomaly-Detector/tutorials/multivariate-anomaly-detection-synapse.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ In this section, you'll create the following resources in the Azure portal:
4040
* [Create an Anomaly Detector](https://portal.azure.com/#create/Microsoft.CognitiveServicesAnomalyDetector) resource in the Azure portal.
4141
* Sign in to [Azure Synapse Analytics](https://web.azuresynapse.net/) using your subscription and Workspace name.
4242

43-
![An image of the Synapse Analytics landing page.](../media/multivariate-anomaly-detector-synapse/synapse-workspace-welcome-page.png)
43+
![A screenshot of the Synapse Analytics landing page.](../media/multivariate-anomaly-detector-synapse/synapse-workspace-welcome-page.png)
4444

4545
### Create a storage account resource
4646

@@ -49,26 +49,26 @@ In this section, you'll create the following resources in the Azure portal:
4949
> [!NOTE]
5050
> For the purposes of this example only we are setting the security on the container to allow anonymous read access for containers and blobs since it will only contain our example .csv data. For anything other than demo purposes this is **not recommended**.
5151
52-
![An image of the creating a container in a storage account.](../media/multivariate-anomaly-detector-synapse/create-a-container.png)
52+
![A screenshot of the creating a container in a storage account.](../media/multivariate-anomaly-detector-synapse/create-a-container.png)
5353

5454
### Create a Key Vault to hold Anomaly Detector Key and storage account connection string
5555

5656
* Create a key vault and configure secrets and access
5757
1. Create a [key vault](https://portal.azure.com/#create/Microsoft.KeyVault) in the Azure portal.
5858
2. Go to Key Vault > Access policies, and grant the [Azure Synapse workspace](/azure/data-factory/data-factory-service-identity?context=/azure/synapse-analytics/context/context&tabs=synapse-analytics) permission to read secrets from Azure Key Vault.
5959

60-
![An image of granting permission to Synapse.](../media/multivariate-anomaly-detector-synapse/grant-synapse-permission.png)
60+
![A screenshot of granting permission to Synapse.](../media/multivariate-anomaly-detector-synapse/grant-synapse-permission.png)
6161

6262
* Create a secret in Key Vault to hold the Anomaly Detector key
6363
1. Go to your Anomaly Detector resource, **Anomaly Detector** > **Keys and Endpoint**. Then copy either of the two keys to the clipboard.
6464
2. Go to **Key Vault** > **Secret** to create a new secret. Specify the name of the secret, and then paste the key from the previous step into the **Value** field. Finally, select **Create**.
6565

66-
![An image of the creating a secret.](../media/multivariate-anomaly-detector-synapse/create-a-secret.png)
66+
![A screenshot of the creating a secret.](../media/multivariate-anomaly-detector-synapse/create-a-secret.png)
6767

6868
* Create a secret in Key Vault to hold Connection String of Storage account
6969
1. Go to your Storage account resource, select **Access keys** to copy one of your Connection strings.
7070

71-
![An image of copying connection string.](../media/multivariate-anomaly-detector-synapse/copy-connection-string.png)
71+
![A screenshot of copying connection string.](../media/multivariate-anomaly-detector-synapse/copy-connection-string.png)
7272

7373
2. Then go to **Key Vault** > **Secret** to create a new secret. Specify the name of the secret (like *myconnectionstring*), and then paste the Connection string from the previous step into the **Value** field. Finally, select **Create**.
7474

@@ -78,11 +78,11 @@ In this section, you'll create the following resources in the Azure portal:
7878

7979
1. Sign in [Azure Synapse Analytics](https://web.azuresynapse.net/) and create a new Notebook for coding.
8080

81-
![An image of creating notebook in Synapse.](../media/multivariate-anomaly-detector-synapse/create-a-notebook.png)
81+
![A screenshot of creating notebook in Synapse.](../media/multivariate-anomaly-detector-synapse/create-a-notebook.png)
8282

8383
2. Select **Manage pools** in the page of notebook to create a new Apache Spark pool if you don’t have one.
8484

85-
![An image of creating spark pool.](../media/multivariate-anomaly-detector-synapse/create-spark-pool.png)
85+
![A screenshot of creating spark pool.](../media/multivariate-anomaly-detector-synapse/create-spark-pool.png)
8686

8787
### Writing code in notebook
8888

@@ -144,11 +144,11 @@ In this section, you'll create the following resources in the Azure portal:
144144
df.show(10)
145145
```
146146

147-
![An image of raw data.](../media/multivariate-anomaly-detector-synapse/raw-data.png)
147+
![A screenshot of raw data.](../media/multivariate-anomaly-detector-synapse/raw-data.png)
148148

149149
4. Train a multivariate anomaly detection model.
150150

151-
![An image of training parameter.](../media/multivariate-anomaly-detector-synapse/training-parameter.png)
151+
![A screenshot of training parameter.](../media/multivariate-anomaly-detector-synapse/training-parameter.png)
152152

153153
```python
154154
#Input your key vault name and anomaly key name in key vault.
@@ -219,7 +219,7 @@ In this section, you'll create the following resources in the Azure portal:
219219
```
220220

221221
The inference results will look as followed. The `severity` is a number between 0 and 1, showing the severe degree of an anomaly. The last three columns indicate the `contribution score` of each sensor, the higher the number is, the more anomalous the sensor is.
222-
![An image of inference result.](../media/multivariate-anomaly-detector-synapse/inference-result.png)
222+
![A screenshot of inference result.](../media/multivariate-anomaly-detector-synapse/inference-result.png)
223223

224224
## Clean up intermediate data (optional)
225225

0 commit comments

Comments
 (0)