Skip to content

Commit ecc0512

Browse files
committed
Extra content, fixed linking
1 parent 7c25986 commit ecc0512

File tree

4 files changed

+22
-13
lines changed

4 files changed

+22
-13
lines changed

articles/ai-services/cognitive-services-container-support.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Azure AI containers provide the following set of Docker containers, each of whic
5353
| [Language service][ta-containers-sentiment] | **Sentiment Analysis** ([image](https://mcr.microsoft.com/product/azure-cognitive-services/textanalytics/sentiment/about)) | Analyzes raw text for clues about positive or negative sentiment. This version of sentiment analysis returns sentiment labels (for example *positive* or *negative*) for each document and sentence within it. | Generally available. <br> This container can also [run in disconnected environments](containers/disconnected-containers.md). |
5454
| [Language service][ta-containers-health] | **Text Analytics for health** ([image](https://mcr.microsoft.com/product/azure-cognitive-services/textanalytics/healthcare/about))| Extract and label medical information from unstructured clinical text. | Generally available |
5555
| [Language service][ta-containers-ner] | **Named Entity Recognition** ([image](https://mcr.microsoft.com/product/azure-cognitive-services/textanalytics/ner/about))| Extract named entities from text. | Generally available. <br>This container can also [run in disconnected environments](containers/disconnected-containers.md). |
56+
| [Language service][ta-containers-pii] | **Personally Identifiable Information (PII) detection** ([image](https://mcr.microsoft.com/en-us/product/azure-cognitive-services/textanalytics/pii/tags))| Detect and redact personally identifiable information entities from text. | Generally available. <br>This container can also [run in disconnected environments](containers/disconnected-containers.md). |
5657
| [Language service][ta-containers-cner] | **Custom Named Entity Recognition** ([image](https://mcr.microsoft.com/product/azure-cognitive-services/textanalytics/customner/about))| Extract named entities from text, using a custom model you create using your data. | Generally available |
5758
| [Language service][ta-containers-summarization] | **Summarization** ([image](https://mcr.microsoft.com/product/azure-cognitive-services/textanalytics/summarization/about))| Summarize text from various sources. | Public preview. <br>This container can also [run in disconnected environments](containers/disconnected-containers.md). |
5859
| [Translator][tr-containers] | **Translator** ([image](https://mcr.microsoft.com/product/azure-cognitive-services/translator/text-translation/about))| Translate text in several languages and dialects. | Generally available. Gated - [request access](https://aka.ms/csgate-translator). <br>This container can also [run in disconnected environments](containers/disconnected-containers.md). |
@@ -131,5 +132,6 @@ Install and explore the functionality provided by containers in Azure AI service
131132
[ta-containers-cner]: language-service/custom-named-entity-recognition/how-to/use-containers.md
132133
[ta-containers-summarization]: language-service/summarization/how-to/use-containers.md
133134
[ta-containers-ner]: language-service/named-entity-recognition/how-to/use-containers.md
135+
[ta-containers-pii]: language-service/personally-identifiable-information//how-to/use-containers.md
134136
[tr-containers]: translator/containers/translator-how-to-install-container.md
135137
[request-access]: https://aka.ms/csgate

articles/ai-services/containers/disconnected-containers.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Containers enable you to run Azure AI services APIs in your own environment, and
2727
* [Language Detection](../language-service/language-detection/how-to/use-containers.md)
2828
* [Summarization](../language-service/summarization/how-to/use-containers.md)
2929
* [Named Entity Recognition](../language-service/named-entity-recognition/how-to/use-containers.md)
30+
* [Personally Identifiable Information (PII) detection](../language-service/personally-identifiable-information/how-to/use-containers.md)
3031
* [Azure AI Vision - Read](../computer-vision/computer-vision-how-to-install-containers.md)
3132
* [Document Intelligence](../../ai-services/document-intelligence/containers/disconnected.md)
3233

@@ -87,6 +88,8 @@ See the following documentation for steps on downloading and configuring the con
8788
* [Sentiment Analysis](../language-service/sentiment-opinion-mining/how-to/use-containers.md#run-the-container-disconnected-from-the-internet)
8889
* [Key Phrase Extraction](../language-service/key-phrase-extraction/how-to/use-containers.md#run-the-container-disconnected-from-the-internet)
8990
* [Language Detection](../language-service/language-detection/how-to/use-containers.md#run-the-container-disconnected-from-the-internet)
91+
* [Named Entity Recognition](../language-service/named-entity-recognition/how-to/use-containers.md#run-the-container-disconnected-from-the-internet)
92+
* [Personally Identifiable Information (PII) detection](../language-service/personally-identifiable-information/how-to/use-containers.md#run-the-container-disconnected-from-the-internet)
9093

9194
## Environment variable names in Kubernetes deployments
9295
Some Azure AI Containers, for example Translator, require users to pass environmental variable names that include colons (`:`) when running the container. This will work fine when using Docker, but Kubernetes does not accept colons in environmental variable names.

articles/ai-services/language-service/concepts/configure-containers.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Language service provides each container with a common configuration framework,
2323
* Text Analytics for Health
2424
* Summarization
2525
* Named Entity Recognition (NER)
26+
* Personally Identifiable (PII) detection
2627

2728
## Configuration settings
2829

articles/ai-services/language-service/personally-identifiable-information/how-to/use-containers.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,18 @@ ms.author: jboback
1313
keywords: on-premises, Docker, container
1414
---
1515

16-
# Install and run Personally Identifiable Information containers
16+
# Install and run Personally Identifiable Information (PII) Detection containers
1717

18-
Containers enable you to host the Personally Identifiable Information API on your own infrastructure. If you have security or data governance requirements that can't be fulfilled by calling Personally Identifiable Information remotely, then containers might be a good option.
18+
> [!NOTE]
19+
> The data limits for the PII container are 5120 characters and 10 documents max.
20+
21+
Containers enable you to host the PII detection API on your own infrastructure. If you have security or data governance requirements that can't be fulfilled by calling PII detection remotely, then containers might be a good option.
1922

2023
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/cognitive-services/) before you begin.
2124

2225
## Prerequisites
2326

24-
You must meet the following prerequisites before using Personally Identifiable Information containers.
27+
You must meet the following prerequisites before using PII detection containers.
2528

2629
* If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/cognitive-services/).
2730
* [Docker](https://docs.docker.com/) installed on a host computer. Docker must be configured to allow the containers to connect with and send billing data to Azure.
@@ -39,19 +42,19 @@ The following table describes the minimum and recommended specifications for the
3942

4043
It is recommended to have a CPU with AVX-512 instruction set, for the best experience (performance and accuracy).
4144

42-
| | Minimum host specs | Recommended host specs |
43-
|-------------------------------------------|------------------------|------------------------|
44-
| **Personally Identifiable Information** | 1 core, 2GB memory | 4 cores, 8GB memory |
45+
| | Minimum host specs | Recommended host specs |
46+
|---------------------|------------------------|------------------------|
47+
| **PII detection** | 1 core, 2GB memory | 4 cores, 8GB memory |
4548

4649
CPU core and memory correspond to the `--cpus` and `--memory` settings, which are used as part of the `docker run` command.
4750

4851
## Get the container image with `docker pull`
4952

50-
The Personally Identifiable Information container image can be found on the `mcr.microsoft.com` container registry syndicate. It resides within the `azure-cognitive-services/textanalytics/` repository and is named `pii`. The fully qualified container image name is, `mcr.microsoft.com/azure-cognitive-services/textanalytics/pii`
53+
The PII detection container image can be found on the `mcr.microsoft.com` container registry syndicate. It resides within the `azure-cognitive-services/textanalytics/` repository and is named `pii`. The fully qualified container image name is, `mcr.microsoft.com/azure-cognitive-services/textanalytics/pii`
5154

5255
To use the latest version of the container, you can use the `latest` tag, which is for English. You can also find a full list of containers for supported languages using the [tags on the MCR](https://mcr.microsoft.com/product/azure-cognitive-services/textanalytics/pii/tags).
5356

54-
The latest Personally Identifiable Information container is available in several languages. To download the container for the English container, use the command below.
57+
The latest PII detection container is available in several languages. To download the container for the English container, use the command below.
5558

5659
```
5760
docker pull mcr.microsoft.com/azure-cognitive-services/textanalytics/pii:latest
@@ -68,7 +71,7 @@ Once the container is on the host computer, use the [docker run](https://docs.do
6871
> * The docker commands in the following sections use the back slash, `\`, as a line continuation character. Replace or remove this based on your host operating system's requirements.
6972
> * The `Eula`, `Billing`, and `ApiKey` options must be specified to run the container; otherwise, the container won't start. For more information, see [Billing](#billing).
7073
71-
To run the Personally Identifiable Information container, execute the following `docker run` command. Replace the placeholders below with your own values:
74+
To run the PII detection container, execute the following `docker run` command. Replace the placeholders below with your own values:
7275

7376
| Placeholder | Value | Format or example |
7477
|-------------|-------|---|
@@ -86,7 +89,7 @@ ApiKey={API_KEY}
8689

8790
This command:
8891

89-
* Runs a *Personally Identifiable Information* container from the container image
92+
* Runs a *PII detection* container from the container image
9093
* Allocates one CPU core and 8 gigabytes (GB) of memory
9194
* Exposes TCP port 5000 and allocates a pseudo-TTY for the container
9295
* Automatically removes the container after it exits. The container image is still available on the host computer.
@@ -121,17 +124,17 @@ If you run the container with an output [mount](../../concepts/configure-contain
121124

122125
## Billing
123126

124-
The Personally Identifiable Information containers send billing information to Azure, using a _Language_ resource on your Azure account.
127+
The PII detection containers send billing information to Azure, using a _Language_ resource on your Azure account.
125128

126129
[!INCLUDE [Container's Billing Settings](../../../includes/cognitive-services-containers-how-to-billing-info.md)]
127130

128131
For more information about these options, see [Configure containers](../../concepts/configure-containers.md).
129132

130133
## Summary
131134

132-
In this article, you learned concepts and workflow for downloading, installing, and running Personally Identifiable Information containers. In summary:
135+
In this article, you learned concepts and workflow for downloading, installing, and running PII detection containers. In summary:
133136

134-
* Personally Identifiable Information provides Linux containers for Docker
137+
* PII detection provides Linux containers for Docker
135138
* Container images are downloaded from the Microsoft Container Registry (MCR).
136139
* Container images run in Docker.
137140
* You must specify billing information when instantiating a container.

0 commit comments

Comments
 (0)