MinedOpinion Class
A mined opinion object represents an opinion we've extracted from a sentence. It consists of both a target that these opinions are about, and the assessments representing the opinion.
- Inheritance
-
azure.ai.textanalytics._dict_mixin.DictMixinMinedOpinion
Constructor
MinedOpinion(**kwargs: Any)
Methods
get | |
has_key | |
items | |
keys | |
update | |
values |
get
get(key: str, default: Any | None = None) -> Any
Parameters
Name | Description |
---|---|
key
Required
|
|
default
|
Default value: None
|
has_key
has_key(k: str) -> bool
Parameters
Name | Description |
---|---|
k
Required
|
|
items
items() -> Iterable[Tuple[str, Any]]
keys
keys() -> Iterable[str]
update
update(*args: Any, **kwargs: Any) -> None
values
values() -> Iterable[Any]
Attributes
assessments
The assessments representing the opinion of the target.
assessments: List[AssessmentSentiment]
target
The target of an opinion about a product/service.
target: TargetSentiment