Skip to content

Commit

Permalink
[textanalytics] custom model docstrings edits (Azure#21498)
Browse files Browse the repository at this point in the history
* update model docstrings

* fix
  • Loading branch information
kristapratico authored Oct 29, 2021
1 parent 2075653 commit 49472b0
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2270,8 +2270,8 @@ def _from_generated(cls, sentence):

class RecognizeCustomEntitiesAction(DictMixin):
"""RecognizeCustomEntitiesAction encapsulates the parameters for starting a long-running custom entity
recognition operation. To train a model to recognize your custom entities, see
https://aka.ms/azsdk/textanalytics/customentityrecognition
recognition operation. For information on regional support of custom features and how to train a model to
recognize custom entities, see https://aka.ms/azsdk/textanalytics/customentityrecognition
:param str project_name: Required. This field indicates the project name for the model.
:param str deployment_name: This field indicates the deployment name for the model.
Expand Down Expand Up @@ -2394,8 +2394,8 @@ def _from_generated(cls, result):

class MultiCategoryClassifyAction(DictMixin):
"""MultiCategoryClassifyAction encapsulates the parameters for starting a long-running custom multi category
classification operation. To train a model to classify your documents, see
https://aka.ms/azsdk/textanalytics/customfunctionalities
classification operation. For information on regional support of custom features and how to train a model to
classify your documents, see https://aka.ms/azsdk/textanalytics/customfunctionalities
:param str project_name: Required. This field indicates the project name for the model.
:param str deployment_name: Required. This field indicates the deployment name for the model.
Expand Down Expand Up @@ -2508,8 +2508,8 @@ def _from_generated(cls, result):

class SingleCategoryClassifyAction(DictMixin):
"""SingleCategoryClassifyAction encapsulates the parameters for starting a long-running custom single category
classification operation. To train a model to classify your documents, see
https://aka.ms/azsdk/textanalytics/customfunctionalities
classification operation. For information on regional support of custom features and how to train a model to
classify your documents, see https://aka.ms/azsdk/textanalytics/customfunctionalities
:param str project_name: Required. This field indicates the project name for the model.
:param str deployment_name: Required. This field indicates the deployment name for the model.
Expand Down Expand Up @@ -2621,7 +2621,7 @@ def _from_generated(cls, result):
class ClassificationCategory(DictMixin):
"""ClassificationCategory represents a classification of the input document.
:ivar str category: Classification type.
:ivar str category: Custom classification category for the document.
:ivar float confidence_score: Confidence score between 0 and 1 of the recognized classification.
"""

Expand Down

0 comments on commit 49472b0

Please sign in to comment.