- 説明:
WSC273 は、あいまいな代名詞を含む文をシステムが読み取り、その代名詞の指示対象を 2 つの選択肢から選択することをシステムに要求する、常識推論のベンチマークです。これには、Winograd Schema Challenge の最初の 273 の例が含まれています。ウィノグラード スキーマは、1 つまたは 2 つの単語だけが異なる文のペアであり、2 つの文で反対の方法で解決されるあいまいさを含み、その解決には世界の知識と推論を使用する必要があります。スキーマの名前は、テリー ウィノグラードの有名な例に由来しますThe city councilmen refused the demonstrators a permit because they [feared/advocated] violence.'' If the word is
they'' presumably refers to the city council; if it is
提唱されている場合、「彼ら」はおそらくデモ参加者を指します。
追加のドキュメント:コード を使用したペーパーの探索
ホームページ: https://cs.nyu.edu/faculty/davise/papers/WinogradSchemas/WS.html
ソースコード:
tfds.text.wsc273.Wsc273
バージョン:
-
1.0.0
(デフォルト): リリース ノートはありません。
-
ダウンロードサイズ:
110.58 KiB
データセットサイズ:
87.15 KiB
自動キャッシュ(ドキュメント): はい
スプリット:
スプリット | 例 |
---|---|
'test' | 273 |
- 機能構造:
FeaturesDict({
'idx': int32,
'label': int32,
'option1': Text(shape=(), dtype=string),
'option1_normalized': Text(shape=(), dtype=string),
'option2': Text(shape=(), dtype=string),
'option2_normalized': Text(shape=(), dtype=string),
'pronoun_end': int32,
'pronoun_start': int32,
'pronoun_text': Text(shape=(), dtype=string),
'text': Text(shape=(), dtype=string),
})
- 機能のドキュメント:
特徴 | クラス | 形 | Dtype | 説明 |
---|---|---|---|---|
特徴辞書 | ||||
idx | テンソル | int32 | ||
ラベル | テンソル | int32 | ||
オプション1 | 文章 | ストリング | ||
option1_normalized | 文章 | ストリング | ||
オプション2 | 文章 | ストリング | ||
option2_normalized | 文章 | ストリング | ||
代名詞の終わり | テンソル | int32 | ||
pronoun_start | テンソル | int32 | ||
代名詞テキスト | 文章 | ストリング | ||
文章 | 文章 | ストリング |
監視されたキー(
as_supervised
docを参照):None
図( tfds.show_examples ): サポートされていません。
例( tfds.as_dataframe ):
- 引用:
@inproceedings{levesque2012winograd,
title={The winograd schema challenge},
author={Levesque, Hector and Davis, Ernest and Morgenstern, Leora},
booktitle={Thirteenth International Conference on the Principles of Knowledge Representation and Reasoning},
year={2012},
organization={Citeseer}
}