AnalyzeSentimentResult クラス
AnalyzeSentimentResult は、ドキュメントの全体的な予測センチメントと信頼度スコアと、スコアを含む文ごとのセンチメント予測を含む結果オブジェクトです。
- 継承
-
azure.ai.textanalytics._dict_mixin.DictMixinAnalyzeSentimentResult
コンストラクター
AnalyzeSentimentResult(**kwargs: Any)
メソッド
get | |
has_key | |
items | |
keys | |
update | |
values |
get
get(key: str, default: Any | None = None) -> Any
パラメーター
名前 | 説明 |
---|---|
key
必須
|
|
default
|
既定値: None
|
has_key
has_key(k: str) -> bool
パラメーター
名前 | 説明 |
---|---|
k
必須
|
|
items
items() -> Iterable[Tuple[str, Any]]
keys
keys() -> Iterable[str]
update
update(*args: Any, **kwargs: Any) -> None
values
values() -> Iterable[Any]
属性
confidence_scores
各センチメント ラベルについて、0 ~ 1 の間のセンチメント信頼度スコアを文書化します。
confidence_scores: SentimentConfidenceScores
id
要求で渡されたドキュメント ID と一致する一意の空でないドキュメント識別子。 要求で指定しない場合は、ドキュメントに ID が割り当てられます。
id: str
is_error
結果の一覧を反復処理するときのエラー項目のブールチェック。 AnalyzeSentimentResult のインスタンスの場合は常に False です。
is_error: Literal[False] = False
kind
テキスト分析の種類 - "SentimentAnalysis"
kind: Literal['SentimentAnalysis'] = 'SentimentAnalysis'
sentences
文レベルの感情分析。
sentences: List[SentenceSentiment]
sentiment
ドキュメントの予測センチメント (Negative、Neutral、Positive、または Mixed)。 指定できる値には、'positive'、'neutral'、'negative'、'mixed' が含まれます
sentiment: str
statistics
要求で show_stats=True が指定されている場合、このフィールドにはドキュメント ペイロードに関する情報が含まれます。
statistics: TextDocumentStatistics | None = None
warnings
ドキュメントの処理中に発生した警告。 警告がある場合でも結果は返されますが、完全には正確ではない可能性があります。
warnings: List[TextAnalyticsWarning]
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for Python