ai-center
latest
false
- リリース ノート
- 基本情報
- 通知
- プロジェクト
- データセット
- データのラベル付け
- ML パッケージ
- すぐに使えるパッケージ
- 概要
- English Text Classification (英語テキスト分類)
- French Text Classification (フランス語テキスト分類)
- Japanese Text Classification (日本語テキスト分類)
- Object Detection (オブジェクト検出)
- Text Classification (テキスト分類)
- TPOT AutoML Classification (TPOT AutoML分類)
- TPOT AutoML Regression (TPOT AutoML 回帰)
- TPOT XGBoost Classification (TPOT XGBoost 分類)
- TPOT XGBoost Regression (TPOT XGBoost 回帰)
- AI Computer Vision
- Communications Mining
- UiPath Document Understanding
- パイプライン
- ML スキル
- ML ログ
- AI Center の Document UnderstandingTM
- AI Center API
- ライセンス
- AI ソリューション テンプレート
- 使い方
- 基本的なトラブルシューティング ガイド
Semantic similarity (意味的類似性)
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
AI Center
Last updated 2024年10月10日
Semantic similarity (意味的類似性)
[すぐに使えるパッケージ] > [UiPath Language Analysis (UiPath 言語分析)] > [Semantic Similarity (意味的類似性)]
注:
Semantic similarity (意味的類似性) モデルは現在パブリック プレビューの段階です。
UiPath® は製品の安定性と品質の向上に取り組んでいますが、プレビュー機能はお客様からのフィードバックに基づいて、いつでも変更される可能性があります。 プレビュー機能の使用は、運用環境のデプロイではお勧めしません。
このモデルでは、1 つの参照文を他の多数の候補文と比較して、候補文を類似度の順にランク付けできます。
「reference」という 1 つの文字列と、「candidates」という 1 つの文字列リストを含む JSON。つまり、複数の参照「文」を指定することはできません。「candidates」は、候補文のリストです。
{"reference": "I like trains because they are fast", "candidates": ["I like trains because they are quick", "I like trains because they are comfortable", "I do not like buses because they are slow", "I do not like trains because they are uncomfortable"]}
{"reference": "I like trains because they are fast", "candidates": ["I like trains because they are quick", "I like trains because they are comfortable", "I do not like buses because they are slow", "I do not like trains because they are uncomfortable"]}
参照と最も類似する候補、およびその類似性に関連するスコア (0-1) を、スコアの降順に示した JSON。
例:
{
"response": [
{
"candidate": "I like trains because they are quick",
"score": 0.96463942527771
},
{
"candidate": "I like trains because they are comfortable",
"score": 0.81790685653686523
},
{
"candidate": "I do not like trains because they are uncomfortable",
"score": 0.53707438707351685
},
{
"candidate": "I do not like buses because they are slow",
"score": 0.48663735389709473
}
]
}
{
"response": [
{
"candidate": "I like trains because they are quick",
"score": 0.96463942527771
},
{
"candidate": "I like trains because they are comfortable",
"score": 0.81790685653686523
},
{
"candidate": "I do not like trains because they are uncomfortable",
"score": 0.53707438707351685
},
{
"candidate": "I do not like buses because they are slow",
"score": 0.48663735389709473
}
]
}