You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-services/cognitive-services-container-support.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,7 @@ Azure AI containers provide the following set of Docker containers, each of whic
53
53
|[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). |
54
54
|[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 |
55
55
|[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). |
56
57
|[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 |
57
58
|[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). |
58
59
|[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
*[Personally Identifiable Information (PII) detection](../language-service/personally-identifiable-information/how-to/use-containers.md#run-the-container-disconnected-from-the-internet)
90
93
91
94
## Environment variable names in Kubernetes deployments
92
95
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.
Copy file name to clipboardExpand all lines: articles/ai-services/language-service/personally-identifiable-information/how-to/use-containers.md
+16-13Lines changed: 16 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,18 @@ ms.author: jboback
13
13
keywords: on-premises, Docker, container
14
14
---
15
15
16
-
# Install and run Personally Identifiable Information containers
16
+
# Install and run Personally Identifiable Information (PII) Detection containers
17
17
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.
19
22
20
23
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/cognitive-services/) before you begin.
21
24
22
25
## Prerequisites
23
26
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.
25
28
26
29
* If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/cognitive-services/).
27
30
*[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
39
42
40
43
It is recommended to have a CPU with AVX-512 instruction set, for the best experience (performance and accuracy).
CPU core and memory correspond to the `--cpus` and `--memory` settings, which are used as part of the `docker run` command.
47
50
48
51
## Get the container image with `docker pull`
49
52
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`
51
54
52
55
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).
53
56
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.
@@ -68,7 +71,7 @@ Once the container is on the host computer, use the [docker run](https://docs.do
68
71
> * 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.
69
72
> * 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).
70
73
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:
72
75
73
76
| Placeholder | Value | Format or example |
74
77
|-------------|-------|---|
@@ -86,7 +89,7 @@ ApiKey={API_KEY}
86
89
87
90
This command:
88
91
89
-
* Runs a *Personally Identifiable Information* container from the container image
92
+
* Runs a *PII detection* container from the container image
90
93
* Allocates one CPU core and 8 gigabytes (GB) of memory
91
94
* Exposes TCP port 5000 and allocates a pseudo-TTY for the container
92
95
* 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
121
124
122
125
## Billing
123
126
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.
For more information about these options, see [Configure containers](../../concepts/configure-containers.md).
129
132
130
133
## Summary
131
134
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:
133
136
134
-
*Personally Identifiable Information provides Linux containers for Docker
137
+
*PII detection provides Linux containers for Docker
135
138
* Container images are downloaded from the Microsoft Container Registry (MCR).
136
139
* Container images run in Docker.
137
140
* You must specify billing information when instantiating a container.
0 commit comments