Skip to content

Commit 1504563

Browse files
Merge pull request #222928 from aahill/studio-qs-update
Language studio quickstart, development options for each service
2 parents e75b403 + 6ca62a2 commit 1504563

File tree

29 files changed

+256
-117
lines changed

29 files changed

+256
-117
lines changed

articles/cognitive-services/language-service/entity-linking/how-to/call-api.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ ms.custom: language-service-entity-linking, ignite-fall-2021
1717

1818
The entity linking feature can be used to identify and disambiguate the identity of an entity found in text (for example, determining whether an occurrence of the word "*Mars*" refers to the planet, or to the Roman god of war). It will return the entities in the text with links to [Wikipedia](https://www.wikipedia.org/) as a knowledge base.
1919

20-
> [!TIP]
21-
> If you want to start using this feature, you can follow the [quickstart article](../quickstart.md) to get started. You can also make example requests using [Language Studio](../../language-studio.md) without needing to write code.
20+
21+
## Development options
22+
23+
[!INCLUDE [development-options](../includes/development-options.md)]
2224

2325
## Determine how to process the data (optional)
2426

@@ -34,7 +36,7 @@ When you submit documents to be processed by entity linking, you can specify whi
3436

3537
Entity linking produces a higher-quality result when you give it smaller amounts of text to work on. This is opposite from some features, like key phrase extraction which performs better on larger blocks of text. To get the best results from both operations, consider restructuring the inputs accordingly.
3638

37-
To send an API request, You will need a Language resource endpoint and key.
39+
To send an API request, you will need a Language resource endpoint and key.
3840

3941
> [!NOTE]
4042
> You can find the key and endpoint for your Language resource on the Azure portal. They will be located on the resource's **Key and endpoint** page, under **resource management**.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
services: cognitive-services
3+
author: aahill
4+
manager: nitinme
5+
ms.service: cognitive-services
6+
ms.subservice: language-service
7+
ms.topic: include
8+
ms.date: 01/06/2023
9+
ms.author: aahi
10+
---
11+
12+
To use entity linking, you submit raw unstructured text for analysis and handle the API output in your application. Analysis is performed as-is, with no additional customization to the model used on your data. There are two ways to use entity linking:
13+
14+
15+
|Development option |Description |
16+
|---------|---------|
17+
|Language studio | Language Studio is a web-based platform that lets you try entity linking with text examples without an Azure account, and your own data when you sign up. For more information, see the [Language Studio website](https://language.cognitive.azure.com/tryout/linkedEntities) or [language studio quickstart](../../language-studio.md). |
18+
|REST API or Client library (Azure SDK) | Integrate entity linking into your applications using the REST API, or the client library available in a variety of languages. For more information, see the [entity linking quickstart](../quickstart.md). |

articles/cognitive-services/language-service/entity-linking/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: language-service
1010
ms.topic: overview
11-
ms.date: 06/15/2022
11+
ms.date: 01/10/2023
1212
ms.author: aahi
1313
ms.custom: language-service-entity-linking, ignite-fall-2021
1414
---
@@ -22,9 +22,9 @@ This documentation contains the following types of articles:
2222
* [**Quickstarts**](quickstart.md) are getting-started instructions to guide you through making requests to the service.
2323
* [**How-to guides**](how-to/call-api.md) contain instructions for using the service in more specific ways.
2424

25-
[!INCLUDE [Typical workflow for pre-configured language features](../includes/overview-typical-workflow.md)]
25+
## Get started with entity linking
2626

27-
The result will be a collection of recognized entities in your text, with URLs to Wikipedia as an online knowledge base.
27+
[!INCLUDE [development-options](includes/development-options.md)]
2828

2929
[!INCLUDE [Developer reference](../includes/reference-samples-text-analytics.md)]
3030

articles/cognitive-services/language-service/includes/deploy-azure-resource.md

Lines changed: 0 additions & 49 deletions
This file was deleted.

articles/cognitive-services/language-service/key-phrase-extraction/how-to/call-api.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: language-service
1010
ms.topic: how-to
11-
ms.date: 07/27/2022
11+
ms.date: 01/10/2023
1212
ms.author: jboback
1313
ms.custom: language-service-key-phrase, ignite-fall-2021
1414
---
@@ -22,6 +22,9 @@ This feature is useful if you need to quickly identify the main points in a coll
2222
> [!TIP]
2323
> If you want to start using this feature, you can follow the [quickstart article](../quickstart.md) to get started. You can also make example requests using [Language Studio](../../language-studio.md) without needing to write code.
2424
25+
## Development options
26+
27+
[!INCLUDE [development options](../includes/development-options.md)]
2528

2629
## Determine how to process the data (optional)
2730

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
services: cognitive-services
3+
author: aahill
4+
manager: nitinme
5+
ms.service: cognitive-services
6+
ms.subservice: language-service
7+
ms.topic: include
8+
ms.date: 01/10/2023
9+
ms.author: aahi
10+
---
11+
12+
To use key phrase extraction, you submit raw unstructured text for analysis and handle the API output in your application. Analysis is performed as-is, with no additional customization to the model used on your data. There are two ways to use key phrase extraction:
13+
14+
15+
|Development option |Description |
16+
|---------|---------|
17+
|Language studio | Language Studio is a web-based platform that lets you try entity linking with text examples without an Azure account, and your own data when you sign up. For more information, see the [Language Studio website](https://language.cognitive.azure.com/tryout/keyPhrases) or [language studio quickstart](../../language-studio.md). |
18+
|REST API or Client library (Azure SDK) | Integrate key phrase extraction into your applications using the REST API, or the client library available in a variety of languages. For more information, see the [key phrase extraction quickstart](../quickstart.md). |
19+
| Docker container | Use the available Docker container to [deploy this feature on-premises](../how-to/use-containers.md). These docker containers enable you to bring the service closer to your data for compliance, security, or other operational reasons. |

articles/cognitive-services/language-service/key-phrase-extraction/overview.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: language-service
1010
ms.topic: overview
11-
ms.date: 06/15/2022
11+
ms.date: 01/10/2023
1212
ms.author: jboback
1313
ms.custom: language-service-key-phrase, ignite-fall-2021
1414
---
@@ -24,11 +24,12 @@ This documentation contains the following types of articles:
2424

2525
[!INCLUDE [Typical workflow for pre-configured language features](../includes/overview-typical-workflow.md)]
2626

27-
[!INCLUDE [Developer reference](../includes/reference-samples-text-analytics.md)]
2827

29-
## Deploy on premises using Docker containers
28+
## Get started with entity linking
29+
30+
[!INCLUDE [development options](./includes/development-options.md)]
3031

31-
Use the available Docker container to [deploy this feature on-premises](how-to/use-containers.md). These docker containers enable you to bring the service closer to your data for compliance, security, or other operational reasons.
32+
[!INCLUDE [Developer reference](../includes/reference-samples-text-analytics.md)]
3233

3334
## Responsible AI
3435

articles/cognitive-services/language-service/language-detection/how-to/call-api.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ Language detection is useful for content stores that collect arbitrary text, whe
2121

2222
The Language Detection feature can detect a wide range of languages, variants, dialects, and some regional or cultural languages.
2323

24-
> [!TIP]
25-
> If you want to start using this feature, you can follow the [quickstart article](../quickstart.md) to get started. You can also make example requests using [Language Studio](../../language-studio.md) without needing to write code.
24+
## Development options
25+
26+
[!INCLUDE [development options](../includes/development-options.md)]
2627

2728
## Determine how to process the data (optional)
2829

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
services: cognitive-services
3+
author: aahill
4+
manager: nitinme
5+
ms.service: cognitive-services
6+
ms.subservice: language-service
7+
ms.topic: include
8+
ms.date: 01/10/2023
9+
ms.author: aahi
10+
---
11+
12+
To use language detection, you submit raw unstructured text for analysis and handle the API output in your application. Analysis is performed as-is, with no additional customization to the model used on your data. There are two ways to use language detection:
13+
14+
15+
|Development option |Description |
16+
|---------|---------|
17+
|Language studio | Language Studio is a web-based platform that lets you try entity linking with text examples without an Azure account, and your own data when you sign up. For more information, see the [Language Studio website](https://language.cognitive.azure.com/tryout/detectLanguage) or [language studio quickstart](../../language-studio.md). |
18+
|REST API or Client library (Azure SDK) | Integrate language detection into your applications using the REST API, or the client library available in a variety of languages. For more information, see the [language detection quickstart](../quickstart.md). |
19+
| Docker container | Use the available Docker container to [deploy this feature on-premises](../how-to/use-containers.md). These docker containers enable you to bring the service closer to your data for compliance, security, or other operational reasons. |

articles/cognitive-services/language-service/language-detection/overview.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ This documentation contains the following types of articles:
2424

2525
[!INCLUDE [Typical workflow for pre-configured language features](../includes/overview-typical-workflow.md)]
2626

27-
## Deploy on premises using Docker containers
2827

29-
Use the available Docker container to [deploy this feature on-premises](how-to/use-containers.md). These docker containers enable you to bring the service closer to your data for compliance, security, or other operational reasons.
28+
## Get started with language detection
29+
30+
[!INCLUDE [development options](./includes/development-options.md)]
3031

3132
## Responsible AI
3233

0 commit comments

Comments
 (0)