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/cognitive-services/big-data/cognitive-services-for-big-data.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Cognitive Services for big data can use resources from any [supported region](ht
24
24
25
25
## Supported services
26
26
27
-
[Cognitive Services](../index.yml), accessed through APIs and SDKs, help developers build intelligent applications without having AI or data science skills. With Cognitive Services you can make your applications see, hear, speak, understand, and reason. To use Cognitive Services, your application must send data to the service over the network. Once received, the service sends an intelligent response in return. The following Cognitive Services resources are available for big data workloads:
27
+
[Cognitive Services](../index.yml), accessed through APIs and SDKs, help developers build intelligent applications without having AI or data science skills. With Cognitive Services you can make your applications see, hear, speak, and understand. To use Cognitive Services, your application must send data to the service over the network. Once received, the service sends an intelligent response in return. The following Cognitive Services resources are available for big data workloads:
Copy file name to clipboardExpand all lines: articles/cognitive-services/cognitive-services-apis-create-account-cli.md
+14-31Lines changed: 14 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,11 @@ ms.devlang: azurecli
16
16
17
17
# Quickstart: Create a Cognitive Services resource using the Azure CLI
18
18
19
-
Use this quickstart to create a Cognitive Services resource using [Azure Command-Line Interface (CLI)](/cli/azure/install-azure-cli) commands. After creating the resource, use the keys and endpoint generated for you to authenticate your applications.
19
+
Use this quickstart to create a Cognitive Services resource using [Azure Command-Line Interface (CLI)](/cli/azure/install-azure-cli) commands. After you create the resource, use the keys and endpoint generated for you to authenticate your applications.
20
20
21
-
Azure Cognitive Services is a cloud-based service with REST APIs, and client library SDKs available to help developers build cognitive intelligence into applications without having direct artificial intelligence (AI) or data science skills or knowledge. Azure Cognitive Services enables developers to easily add cognitive features into their applications with cognitive solutions that can see, hear, speak, understand, and even begin to reason.
21
+
Azure Cognitive Services are cloud-based artificial intelligence (AI) services that help developers build cognitive intelligence into applications without having direct AI or data science skills or knowledge. They are available through REST APIs and client library SDKs in popular development languages. Azure Cognitive Services enables developers to easily add cognitive features into their applications with cognitive solutions that can see, hear, speak, and analyze.
@@ -43,37 +43,31 @@ You can also use the green **Try It** button to run these commands in your brows
43
43
44
44
## Create a new Azure Cognitive Services resource group
45
45
46
-
Before creating a Cognitive Services resource, you must have an Azure resource group to contain the resource. When you create a new resource, you can either create a new resource group, or use an existing one. This article shows how to create a new resource group.
46
+
Before you create a Cognitive Services resource, you must have an Azure resource group to contain the resource. When you create a new resource, you can either create a new resource group, or use an existing one. This article shows how to create a new resource group.
47
47
48
48
### Choose your resource group location
49
49
50
50
To create a resource, you'll need one of the Azure locations available for your subscription. You can retrieve a list of available locations with the [az account list-locations](/cli/azure/account#az-account-list-locations) command. Most Cognitive Services can be accessed from several locations. Choose the one closest to you, or see which locations are available for the service.
51
51
52
52
> [!IMPORTANT]
53
-
> * Remember your Azure location, as you will need it when calling the Azure Cognitive Services.
53
+
> * Remember your Azure location, as you will need it when calling the Azure Cognitive Services resources.
54
54
> * The availability of some Cognitive Services can vary by region. For more information, see [Azure products by region](https://azure.microsoft.com/global-infrastructure/services/?products=cognitive-services).
55
55
56
56
```azurecli-interactive
57
-
az account list-locations \
58
-
--query "[].{Region:name}" \
59
-
--out table
57
+
az account list-locations --query "[].{Region:name}" --out table
60
58
```
61
59
62
-
After you have your Azure location, create a new resource group in the Azure CLI using the [az group create](/cli/azure/group#az-group-create) command.
63
-
64
-
In the example below, replace the Azure location `westus2` with one of the Azure locations available for your subscription.
60
+
After you have your Azure location, create a new resource group in the Azure CLI using the [az group create](/cli/azure/group#az-group-create) command. In the example below, replace the Azure location `westus2` with one of the Azure locations available for your subscription.
65
61
66
62
```azurecli-interactive
67
-
az group create \
68
-
--name cognitive-services-resource-group \
69
-
--location westus2
63
+
az group create --name cognitive-services-resource-group --location westus2
70
64
```
71
65
72
66
## Create a Cognitive Services resource
73
67
74
-
### Choose a cognitive service and pricing tier
68
+
### Choose a service and pricing tier
75
69
76
-
When creating a new resource, you'll need to know the "kind" of service you want to use, along with the [pricing tier](https://azure.microsoft.com/pricing/details/cognitive-services/) (or sku) you want. You'll use this and other information as parameters when creating the resource.
70
+
When you create a new resource, you'll need to know the kind of service you want to use, along with the [pricing tier](https://azure.microsoft.com/pricing/details/cognitive-services/) (or SKU) you want. You'll use this and other information as parameters when you create the resource.
@@ -88,18 +82,12 @@ az cognitiveservices account list-kinds
88
82
89
83
### Add a new resource to your resource group
90
84
91
-
To create and subscribe to a new Cognitive Services resource, use the [az cognitiveservices account create](/cli/azure/cognitiveservices/account#az-cognitiveservices-account-create) command. This command adds a new billable resource to the resource group created earlier. When creating your new resource, you'll need to know the "kind" of service you want to use, along with its pricing tier (or sku) and an Azure location:
85
+
To create and subscribe to a new Cognitive Services resource, use the [az cognitiveservices account create](/cli/azure/cognitiveservices/account#az-cognitiveservices-account-create) command. This command adds a new billable resource to the resource group you created earlier. When you create your new resource, you'll need to know the "kind" of service you want to use, along with its pricing tier (or SKU) and an Azure location:
92
86
93
87
You can create an F0 (free) resource for Anomaly Detector, named `anomaly-detector-resource` with the command below.
[!INCLUDE [Register Azure resource for subscription](./includes/register-resource-subscription.md)]
@@ -115,9 +103,7 @@ az login
115
103
Use the [az cognitiveservices account keys list](/cli/azure/cognitiveservices/account/keys#az-cognitiveservices-account-keys-list) command to get the keys for your Cognitive Service resource.
@@ -134,10 +120,7 @@ Pricing tiers (and the amount you get billed) are based on the number of transac
134
120
Use the [az cognitiveservices account list-usage](/cli/azure/cognitiveservices/account#az-cognitiveservices-account-list-usage) command to get the usage for your Cognitive Service resource.
Copy file name to clipboardExpand all lines: articles/cognitive-services/cognitive-services-apis-create-account-client-library.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ ms.custom: mode-api
18
18
19
19
Use this quickstart to create and manage Azure Cognitive Services resources using the Azure Management client library.
20
20
21
-
Azure Cognitive Services is a family of cloud-base services with REST APIs and client libraries available to help developers build cognitive intelligence into their applications. Developers do not need direct artificial intelligence (AI) or data science skills or knowledge to achieve success. Azure Cognitive Services enables developers to easily add cognitive features into their applications with cognitive solutions that can see, hear, speak, understand, and even begin to reason.
21
+
Azure Cognitive Services are cloud-based artificial intelligence (AI) services that help developers build cognitive intelligence into applications without having direct AI or data science skills or knowledge. They are available through REST APIs and client library SDKs in popular development languages. Azure Cognitive Services enables developers to easily add cognitive features into their applications with cognitive solutions that can see, hear, speak, and analyze.
22
22
23
23
Individual AI services are represented by Azure [resources](../azure-resource-manager/management/manage-resources-portal.md) that you create under your Azure subscription. After you create a resource, you can use the keys and endpoint generated to authenticate your applications.
Copy file name to clipboardExpand all lines: articles/cognitive-services/cognitive-services-apis-create-account.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,9 +16,9 @@ ms.author: aahi
16
16
17
17
Use this quickstart to create a Cognitive Services resource. After you create a Cognitive Service resource in the Azure portal, you'll get an endpoint and a key for authenticating your applications.
18
18
19
-
Azure Cognitive Services are cloud-based services with REST APIs, and client library SDKs available to help developers build cognitive intelligence into applications without having direct artificial intelligence (AI) or data science skills or knowledge. Azure Cognitive Services enables developers to easily add cognitive features into their applications with cognitive solutions that can see, hear, speak, understand, and even begin to reason.
19
+
Azure Cognitive Services are cloud-based artificial intelligence (AI) services that help developers build cognitive intelligence into applications without having direct AI or data science skills or knowledge. They are available through REST APIs and client library SDKs in popular development languages. Azure Cognitive Services enables developers to easily add cognitive features into their applications with cognitive solutions that can see, hear, speak, and analyze.
Copy file name to clipboardExpand all lines: articles/cognitive-services/commitment-tier.md
+5-7Lines changed: 5 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,14 +5,13 @@ author: aahill
5
5
ms.author: aahi
6
6
ms.custom: subject-cost-optimization, mode-other
7
7
ms.service: cognitive-services
8
-
ms.topic: quickstart
9
-
ms.date: 11/04/2021
8
+
ms.topic: conceptual
9
+
ms.date: 09/01/2022
10
10
---
11
11
12
-
# Quickstart: Purchase commitment tier pricing
13
-
14
-
Cognitive Services offers commitment tier pricing, each offering a discounted rate compared to the pay-as-you-go pricing model. With commitment tier pricing, you can commit to using the following Cognitive Services features for a fixed fee, enabling you to have a predictable total cost based on the needs of your workload:
12
+
# Purchase commitment tier pricing
15
13
14
+
Cognitive Services offers commitment tier pricing, each offering a discounted rate compared to the pay-as-you-go pricing model. With commitment tier pricing, you can commit to using the following Cognitive Services features for a fixed fee, enabling you to have a predictable total cost based on the needs of your workload:
16
15
* Speech to Text (Standard)
17
16
* Text to Speech (Neural)
18
17
* Text Translation (Standard)
@@ -21,7 +20,7 @@ Cognitive Services offers commitment tier pricing, each offering a discounted r
21
20
* Sentiment Analysis
22
21
* Key Phrase Extraction
23
22
* Language Detection
24
-
* Computer Vision - Read
23
+
* Computer Vision - OCR
25
24
26
25
Commitment tier pricing is also available for the following Applied AI service:
27
26
* Form Recognizer – Custom/Invoice
@@ -76,7 +75,6 @@ Once you are approved, you can use either create a new resource to use a commitm
76
75
77
76
***Auto-renewal** - Choose how you want to renew, change, or cancel the current commitment plan starting with the next billing cycle. If you decide to auto-renew, the **Auto-renewal date** is the date (in your local timezone) when you will be charged for the next billing cycle. This date coincides with the start of the calendar month.
78
77
79
-
80
78
> [!CAUTION]
81
79
> Once you click **Purchase** you will be charged for the tier you select. Once purchased, the commitment plan is non-refundable.
Follow this quickstart to create Cognitive Services resource using Bicep.
17
17
18
-
Azure Cognitive Services are cloud-base services with REST APIs, and client library SDKs available to help developers build cognitive intelligence into applications without having direct artificial intelligence (AI) or data science skills or knowledge. Azure Cognitive Services enables developers to easily add cognitive features into their applications with cognitive solutions that can see, hear, speak, understand, and even begin to reason.
18
+
Azure Cognitive Services are cloud-based artificial intelligence (AI) services that help developers build cognitive intelligence into applications without having direct AI or data science skills or knowledge. They are available through REST APIs and client library SDKs in popular development languages. Azure Cognitive Services enables developers to easily add cognitive features into their applications with cognitive solutions that can see, hear, speak, and analyze.
*[Microsoft.CognitiveServices/accounts](/azure/templates/microsoft.cognitiveservices/accounts): creates a Cognitive Services resource.
40
+
One Azure resource is defined in the Bicep file: [Microsoft.CognitiveServices/accounts](/azure/templates/microsoft.cognitiveservices/accounts) specifies that it is a Cognitive Services resource. The `kind` field in the Bicep file defines the type of resource.
41
+
42
+
[!INCLUDE [SKUs and pricing](./includes/quickstarts/sku-pricing.md)]
This quickstart describes how to use an Azure Resource Manager template (ARM template) to create Cognitive Services.
18
18
19
-
Azure Cognitive Services are cloud-base services with REST APIs, and client library SDKs available to help developers build cognitive intelligence into applications without having direct artificial intelligence (AI) or data science skills or knowledge. Azure Cognitive Services enables developers to easily add cognitive features into their applications with cognitive solutions that can see, hear, speak, understand, and even begin to reason.
19
+
Azure Cognitive Services are cloud-based artificial intelligence (AI) services that help developers build cognitive intelligence into applications without having direct AI or data science skills or knowledge. They are available through REST APIs and client library SDKs in popular development languages. Azure Cognitive Services enables developers to easily add cognitive features into their applications with cognitive solutions that can see, hear, speak, and analyze.
20
20
21
21
Create a resource using an Azure Resource Manager template (ARM template). This multi-service resource lets you:
22
22
@@ -26,10 +26,6 @@ Create a resource using an Azure Resource Manager template (ARM template). This
If your environment meets the prerequisites and you're familiar with using ARM templates, select the **Deploy to Azure** button. The template will open in the Azure portal.
30
-
31
-
[](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.cognitiveservices%2Fcognitive-services-universalkey%2Fazuredeploy.json)
32
-
33
29
## Prerequisites
34
30
35
31
* If you don't have an Azure subscription, [create one for free](https://azure.microsoft.com/free/cognitive-services).
@@ -40,8 +36,9 @@ The template used in this quickstart is from [Azure Quickstart Templates](https:
*[Microsoft.CognitiveServices/accounts](/azure/templates/microsoft.cognitiveservices/accounts): creates a Cognitive Services resource.
39
+
One Azure resource is defined in the Bicep file: [Microsoft.CognitiveServices/accounts](/azure/templates/microsoft.cognitiveservices/accounts) specifies that it is a Cognitive Services resource. The `kind` field in the Bicep file defines the type of resource.
40
+
41
+
[!INCLUDE [SKUs and pricing](./includes/quickstarts/sku-pricing.md)]
0 commit comments