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/language-service/custom-named-entity-recognition/includes/rest-api/create-project.md
+9-12Lines changed: 9 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.topic: include
6
6
ms.date: 11/21/2024
7
7
ms.author: lajanuar
8
8
---
9
-
To start creating a custom named entity recognition model, you need to create a project. Creating a project will let you label data, train, evaluate, improve, and deploy your models.
9
+
To start creating a custom named entity recognition model, you need to create a project. Creating a project lets you label data, train, evaluate, improve, and deploy your models.
10
10
11
11
> [!NOTE]
12
12
> The project name is case-sensitive for all operations.
@@ -15,7 +15,7 @@ Create a **PATCH** request using the following URL, headers, and JSON body to cr
15
15
16
16
### Request URL
17
17
18
-
Use the following URL to create a project. Replace the placeholder values below with your own values.
18
+
Use the following URL to create a project. Replace the following placeholders with your own values.
@@ -25,7 +25,7 @@ Use the following URL to create a project. Replace the placeholder values below
25
25
|---------|---------|---------|
26
26
|`{ENDPOINT}`| The endpoint for authenticating your API request. |`https://<your-custom-subdomain>.cognitiveservices.azure.com`|
27
27
|`{PROJECT-NAME}`| The name for your project. This value is case-sensitive. |`myProject`|
28
-
|`{API-VERSION}`| The version of the API you are calling. The value referenced here is for the latest version released. See[Model lifecycle](../../../concepts/model-lifecycle.md#choose-the-model-version-used-on-your-data) to learn more about other available API versions. |`2022-05-01`|
28
+
|`{API-VERSION}`| The version of the API you're calling. The value referenced is for the latest released version. For more information, see[Model lifecycle](../../../concepts/model-lifecycle.md#choose-the-model-version-used-on-your-data) to learn more about other available API versions. |`2022-05-01`|
29
29
30
30
31
31
### Request headers
@@ -39,7 +39,7 @@ Use the following header to authenticate your request.
39
39
40
40
### Request body
41
41
42
-
Use the following JSON in your request. Replace the placeholder values below with your own values.
42
+
Use the following JSON in your request. Replace the following placeholders with your own values.
43
43
44
44
```json
45
45
{
@@ -56,17 +56,14 @@ Use the following JSON in your request. Replace the placeholder values below wit
56
56
|Key |Placeholder|Value | Example |
57
57
|---------|---------|---------|--|
58
58
| projectName |`{PROJECT-NAME}`| The name of your project. This value is case-sensitive. |`myProject`|
59
-
| language |`{LANGUAGE-CODE}`| A string specifying the language code for the documents used in your project. If your project is a multilingual project, choose the language code of the majority of the documents. See [language support](../../language-support.md) to learn more about supported language codes. |`en-us`|
59
+
| language |`{LANGUAGE-CODE}`| A string specifying the language code for the documents used in your project. If your project is a multilingual project, select the code for the language most frequently represented in the documents. See [language support](../../language-support.md) to learn more about supported language codes. |`en-us`|
60
60
| projectKind |`CustomEntityRecognition`| Your project kind. |`CustomEntityRecognition`|
61
-
| multilingual |`true`| A boolean value that enables you to have documents in multiple languages in your dataset and when your model is deployed you can query the model in any supported language (not necessarily included in your training documents. See [language support](../../language-support.md#multi-lingual-option) to learn more about multilingual support.|`true`|
62
-
| storageInputContainerName |`{CONTAINER-NAME`| The name of your Azure storage container where you have uploaded your documents. |`myContainer`|
61
+
| multilingual |`true`| A boolean value that enables you to have documents in multiple languages in your dataset and when your model is deployed you can query the model in any supported language (not necessarily included in your training documents). See [language support](../../language-support.md#multi-lingual-option) to learn more about multilingual support. |`true`|
62
+
| storageInputContainerName |`{CONTAINER-NAME`| The name of your Azure storage container your documents were uploaded. |`myContainer`|
63
63
64
+
This request returns a 201 response, which means that the project is created.
64
65
65
66
66
-
67
-
This request will return a 201 response, which means that the project is created.
68
-
69
-
70
-
This request will return an error if:
67
+
This request returns an error if:
71
68
* The selected resource doesn't have proper permission for the storage account.
0 commit comments