Identification and extraction of key phrases

SAMUEL FALCÓN PULIDO 1 Reputation point
2021-05-28T08:12:48.413+00:00

Hi!

This is the first time I ask in this forum, so please let me know if I am not in the right place to ask this question.

I have a database with about 800 sentences that I have been extracting manually.

Is there any service in Azure in which I can train a model with those 800 phrases and, if I give it a text document as input, it identifies and extracts phrases similar to those?

Thank you.

Azure AI Language
Azure AI Language
An Azure service that provides natural language capabilities including sentiment analysis, entity extraction, and automated question answering.
364 questions
Azure AI services
Azure AI services
A group of Azure services, SDKs, and APIs designed to make apps more intelligent, engaging, and discoverable.
2,449 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. romungi-MSFT 42,786 Reputation points Microsoft Employee
    2021-05-28T10:29:57.907+00:00

    @SAMUEL FALCÓN PULIDO The service which is close to help you with minimal effort is Azure text Analytics.
    But, according to your scenario an NLP model would need training on custom phrases to extract similar phrases from a new document. This scenario of training a custom model with Azure text analysis is not possible currently. You can rely on the API directly to extract Named recognition entities and key phrases which is trained by Azure. This will not provide you the entire text "as-is" in your document but gives key phrases along with sentiment.

    Another option is to use the Azure Machine learning service to create experiments with NLP models trained on your data and use the resulting endpoint to extract similar data.

    0 comments No comments