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
// API Key for the Cognitive Service for Text Analytics. See this Azure CLI Link to get the key: https://docs.microsoft.com/en-us/cli/azure/cognitiveservices/account/keys?view=azure-cli-latest#az-cognitiveservices-account-keys-list-examples
- Replace `cognitiveTextAnalyticsEndpoint` variable's value in `Programs.cs` with one of the `Endpoints`
29
29
30
-
- Replace `cognitiveTextAnalyticsSubscriptionKey` variable's value in `Programs.cs` with one of the `Keys`
30
+
- Replace `CognitiveTextAnalyticsAPIKey ` variable's value in `Programs.cs` with one of the `Keys`
31
31
32
32
33
33
## Visual Studio
34
34
- Set `CrawlFeaturizer` as the Start Up project in Visual Studio
35
35
36
36
- Run the project (press `F5` key)
37
37
38
-
## Crawl Pipeline
38
+
## Crawl Pipeline
39
39
The Crawl pipeline consists of 2 stages
40
40
1. Crawl a feed url and get all the items listed in the feed. These items are the `Actions` that will be ranked by Personalization API. This is exposed through the `IActionsProvider` interface.
41
41
2. Each `Action` is decorated with `Features` by using some `ActionFeaturizer` e.g Cognitive Services Text Analytics, Cognitive Services Vision. This functionality is exposed through the `IActionFeaturizer` interface. Once we have a set of actions with features, those actions can be ranked using the Personalization API.
0 commit comments