Skip to content

Commit

Permalink
switch lang services off
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Vykhodtsev committed Feb 9, 2024
1 parent d764baa commit 3ce5151
Showing 1 changed file with 46 additions and 46 deletions.
92 changes: 46 additions & 46 deletions 01-Load-Data-ACogSearch.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -255,52 +255,52 @@
" }\n",
" ]\n",
" },\n",
" {\n",
" \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\n",
" \"context\": \"/document/pages/*\",\n",
" \"maxKeyPhraseCount\": 2,\n",
" \"defaultLanguageCode\": \"en\",\n",
" \"inputs\": [\n",
" {\n",
" \"name\": \"text\", \n",
" \"source\": \"/document/pages/*\"\n",
" }\n",
" ],\n",
" \"outputs\": [\n",
" {\n",
" \"name\": \"keyPhrases\",\n",
" \"targetName\": \"keyPhrases\"\n",
" }\n",
" ]\n",
" },\n",
" {\n",
" \"@odata.type\": \"#Microsoft.Skills.Text.V3.EntityRecognitionSkill\",\n",
" \"context\": \"/document/pages/*\",\n",
" \"categories\": [\"Person\", \"URL\", \"Email\"],\n",
" \"minimumPrecision\": 0.5, \n",
" \"defaultLanguageCode\": \"en\",\n",
" \"inputs\": [\n",
" {\n",
" \"name\": \"text\", \n",
" \"source\":\"/document/pages/*\"\n",
" }\n",
" ],\n",
" \"outputs\": [\n",
" {\n",
" \"name\": \"persons\", \n",
" \"targetName\": \"persons\"\n",
" },\n",
" {\n",
" \"name\": \"urls\", \n",
" \"targetName\": \"urls\"\n",
" },\n",
" {\n",
" \"name\": \"emails\", \n",
" \"targetName\": \"emails\"\n",
" }\n",
" ]\n",
" }\n",
" ],\n",
" # {\n",
" # \"@odata.type\": \"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\n",
" # \"context\": \"/document/pages/*\",\n",
" # \"maxKeyPhraseCount\": 2,\n",
" # \"defaultLanguageCode\": \"en\",\n",
" # \"inputs\": [\n",
" # {\n",
" # \"name\": \"text\", \n",
" # \"source\": \"/document/pages/*\"\n",
" # }\n",
" # ],\n",
" # \"outputs\": [\n",
" # {\n",
" # \"name\": \"keyPhrases\",\n",
" # \"targetName\": \"keyPhrases\"\n",
" # }\n",
" # ]\n",
" # },\n",
" # {\n",
" # \"@odata.type\": \"#Microsoft.Skills.Text.V3.EntityRecognitionSkill\",\n",
" # \"context\": \"/document/pages/*\",\n",
" # \"categories\": [\"Person\", \"URL\", \"Email\"],\n",
" # \"minimumPrecision\": 0.5, \n",
" # \"defaultLanguageCode\": \"en\",\n",
" # \"inputs\": [\n",
" # {\n",
" # \"name\": \"text\", \n",
" # \"source\":\"/document/pages/*\"\n",
" # }\n",
" # ],\n",
" # \"outputs\": [\n",
" # {\n",
" # \"name\": \"persons\", \n",
" # \"targetName\": \"persons\"\n",
" # },\n",
" # {\n",
" # \"name\": \"urls\", \n",
" # \"targetName\": \"urls\"\n",
" # },\n",
" # {\n",
" # \"name\": \"emails\", \n",
" # \"targetName\": \"emails\"\n",
" # }\n",
" # ]\n",
" # }\n",
" # ],\n",
" \"cognitiveServices\": {\n",
" \"@odata.type\": \"#Microsoft.Azure.Search.CognitiveServicesByKey\",\n",
" \"description\": os.environ['COG_SERVICES_NAME'],\n",
Expand Down

0 comments on commit 3ce5151

Please sign in to comment.