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/sentiment-opinion-mining/how-to/use-containers.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
@@ -46,7 +46,7 @@ CPU core and memory correspond to the `--cpus` and `--memory` settings, which ar
46
46
47
47
The Sentiment Analysis 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 `sentiment`. The fully qualified container image name is, `mcr.microsoft.com/azure-cognitive-services/textanalytics/sentiment`
48
48
49
-
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/sentiment/tags).
49
+
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/sentiment/tags).
50
50
51
51
The sentiment analysis container v3 container is available in several languages. To download the container for the English container, use the command below.
52
52
@@ -115,7 +115,7 @@ If you run the container with an output [mount](../../concepts/configure-contain
115
115
116
116
## Billing
117
117
118
-
The Sentiment Analysis containers send billing information to Azure, using a _Language_ resource on your Azure account.
118
+
The Sentiment Analysis containers send billing information to Azure, using a *Language* resource on your Azure account.
Copy file name to clipboardExpand all lines: articles/ai-studio/how-to/model-catalog-overview.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,7 @@ Some models in the **Curated by Azure AI** and **Open models from the Hugging Fa
45
45
## Model deployment: Managed compute and serverless API (pay-as-you-go)
46
46
47
47
Model Catalog offers two distinct ways to deploy models from the catalog for your use: managed compute and serverless APIs. The deployment options available for each model vary; learn more about the features of the deployment options, and the options available for specific models, in the following tables. Learn more about [data processing](concept-data-privacy.md) with the deployment options.
48
+
<!-- docutune:disable -->
48
49
49
50
Features | Managed compute | serverless API (pay-as-you-go)
:::image type="content" source="../media/explore/platform-service-cycle.png" alt-text="A diagram showing models as a service and Real time end points service cycle." lightbox="../media/explore/platform-service-cycle.png":::
68
70
@@ -126,6 +128,8 @@ Azure AI Studio enables users to make use of Vector Indexes and Retrieval Augmen
126
128
127
129
Pay-as-you-go billing is available only to users whose Azure subscription belongs to a billing account in a country where the model provider has made the offer available (see "offer availability region" in the table in the next section). If the offer is available in the relevant region, the user then must have a Hub/Project in the Azure region where the model is available for deployment or fine-tuning, as applicable (see "hub/project region" columns in the table below).
128
130
131
+
<!-- docutune:disable -->
132
+
129
133
Model | Offer availability region | Hub/Project Region for Deployment | Hub/Project Region for Fine-tuning
130
134
--|--|--|--
131
135
Llama-3-70B-Instruct <br> Llama-3-8B-Instruct | [Microsoft Managed Countries](/partner-center/marketplace/tax-details-marketplace#microsoft-managed-countriesregions) | East US 2, Sweden Central | Not available
Mistral-Large <br> Mistral Small | [Microsoft Managed Countries](/partner-center/marketplace/tax-details-marketplace#microsoft-managed-countriesregions) | East US 2, Sweden Central | Not available
135
139
Cohere-command-r-plus <br> Cohere-command-r <br> Cohere-embed-v3-english <br> Cohere-embed-v3-multilingual | [Microsoft Managed Countries](/partner-center/marketplace/tax-details-marketplace#microsoft-managed-countriesregions) <br> Japan | East US 2, Sweden Central | Not available
136
140
141
+
<!-- docutune:enable -->
137
142
138
143
### Content safety for models deployed via Serverless API
Copy file name to clipboardExpand all lines: articles/app-service/deploy-local-git.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -153,15 +153,15 @@ When you push commits to your App Service repository, App Service deploys the fi
153
153
154
154
You might see the following common error messages when you use Git to publish to an App Service app in Azure:
155
155
156
-
|Message|Cause|Resolution
157
-
---|---|---|
156
+
|Message|Cause|Resolution|
157
+
|---|---|---|
158
158
|`Unable to access '[siteURL]': Failed to connect to [scmAddress]`|The app isn't up and running.|Start the app in the Azure portal. Git deployment isn't available when the web app is stopped.|
159
159
|`Couldn't resolve host 'hostname'`|The address information for the `azure` remote is incorrect.|Use the `git remote -v` command to list all remotes, along with the associated URL. Verify that the URL for the `azure` remote is correct. If needed, remove and recreate this remote using the correct URL.|
160
160
|`No refs in common and none specified; doing nothing. Perhaps you should specify a branch such as 'main'.`|You didn't specify a branch during `git push`, or you haven't set the `push.default` value in `.gitconfig`.|Run `git push` again, specifying the main branch: `git push azure main`.|
161
161
|`Error - Changes committed to remote repository but deployment to website failed.`|You pushed a local branch that doesn't match the app deployment branch on `azure`.|Verify that current branch is `master`. To change the default branch, use `DEPLOYMENT_BRANCH` application setting (see [Change deployment branch](#change-deployment-branch)). |
162
162
|`src refspec [branchname] does not match any.`|You tried to push to a branch other than main on the `azure` remote.|Run `git push` again, specifying the main branch: `git push azure main`.|
163
163
|`RPC failed; result=22, HTTP code = 5xx.`|This error can happen if you try to push a large git repository over HTTPS.|Change the git configuration on the local machine to make the `postBuffer` bigger. For example: `git config --global http.postBuffer 524288000`.|
164
-
|`Error - Changes committed to remote repository but your web app not updated.`|You deployed a Node.js app with a _package.json_ file that specifies additional required modules.|Review the `npm ERR!` error messages before this error for more context on the failure. The following are the known causes of this error, and the corresponding `npm ERR!` messages:<br /><br />**Malformed package.json file**: `npm ERR! Couldn't read dependencies.`<br /><br />**Native module doesn't have a binary distribution for Windows**:<br />`npm ERR!\cmd "/c""node-gyp rebuild"\ failed with 1`<br />or <br />`npm ERR! [modulename@version] preinstall: \make || gmake\`|
164
+
|`Error - Changes committed to remote repository but your web app not updated.`|You deployed a Node.js app with a _package.json_ file that specifies additional required modules.|Review the `npm ERR!` error messages before this error for more context on the failure. The following are the known causes of this error, and the corresponding `npm ERR!` messages:<br /><br />**Malformed package.json file**: `npm ERR! Couldn't read dependencies.`<br /><br />**Native module doesn't have a binary distribution for Windows**:<br />`npm ERR!\cmd "/c""node-gyp rebuild"\ failed with 1`<br />or <br />`npm ERR! [modulename@version] preinstall: \make \|\| gmake\`|
0 commit comments