snli、snli
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
SNLI コーパス (バージョン 1.0) は、テキスト含意の認識としても知られる自然言語推論 (NLI) のタスクをサポートする、含意、矛盾、中立のラベルを使用してバランスの取れた分類のために手動でラベル付けされた、人間が作成した 570,000 の英語の文のペアのコレクションです。 (RTE)。
スプリット | 例 |
---|
'test' | 10,000 |
'train' | 550,152 |
'validation' | 10,000 |
FeaturesDict({
'hypothesis': Text(shape=(), dtype=string),
'label': ClassLabel(shape=(), dtype=int64, num_classes=3),
'premise': Text(shape=(), dtype=string),
})
特徴 | クラス | 形 | Dtype | 説明 |
---|
| 特徴辞書 | | | |
仮説 | 文章 | | ストリング | |
ラベル | クラスラベル | | int64 | |
前提 | 文章 | | ストリング | |
@inproceedings{snli:emnlp2015,
Author = {Bowman, Samuel R. and Angeli, Gabor and Potts, Christopher, and Manning, Christopher D.},
Booktitle = {Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing (EMNLP)},
Publisher = {Association for Computational Linguistics},
Title = {A large annotated corpus for learning natural language inference},
Year = {2015}
}
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2023-01-13 UTC。
[null,null,["最終更新日 2023-01-13 UTC。"],[],[],null,["# snli\n\n\u003cbr /\u003e\n\n- **Description**:\n\nThe SNLI corpus (version 1.0) is a collection of 570k human-written English\nsentence pairs manually labeled for balanced classification with the labels\nentailment, contradiction, and neutral, supporting the task of natural language\ninference (NLI), also known as recognizing textual entailment (RTE).\n\n- **Additional Documentation** :\n [Explore on Papers With Code\n north_east](https://paperswithcode.com/dataset/snli)\n\n- **Homepage** :\n \u003chttps://nlp.stanford.edu/projects/snli/\u003e\n\n- **Source code** :\n [`tfds.datasets.snli.Builder`](https://github.com/tensorflow/datasets/tree/master/tensorflow_datasets/datasets/snli/snli_dataset_builder.py)\n\n- **Versions**:\n\n - **`1.1.0`** (default): No release notes.\n- **Download size** : `90.17 MiB`\n\n- **Dataset size** : `87.00 MiB`\n\n- **Auto-cached**\n ([documentation](https://www.tensorflow.org/datasets/performances#auto-caching)):\n Yes\n\n- **Splits**:\n\n| Split | Examples |\n|----------------|----------|\n| `'test'` | 10,000 |\n| `'train'` | 550,152 |\n| `'validation'` | 10,000 |\n\n- **Feature structure**:\n\n FeaturesDict({\n 'hypothesis': Text(shape=(), dtype=string),\n 'label': ClassLabel(shape=(), dtype=int64, num_classes=3),\n 'premise': Text(shape=(), dtype=string),\n })\n\n- **Feature documentation**:\n\n| Feature | Class | Shape | Dtype | Description |\n|------------|--------------|-------|--------|-------------|\n| | FeaturesDict | | | |\n| hypothesis | Text | | string | |\n| label | ClassLabel | | int64 | |\n| premise | Text | | string | |\n\n- **Supervised keys** (See\n [`as_supervised` doc](https://www.tensorflow.org/datasets/api_docs/python/tfds/load#args)):\n `None`\n\n- **Figure**\n ([tfds.show_examples](https://www.tensorflow.org/datasets/api_docs/python/tfds/visualization/show_examples)):\n Not supported.\n\n- **Examples**\n ([tfds.as_dataframe](https://www.tensorflow.org/datasets/api_docs/python/tfds/as_dataframe)):\n\nDisplay examples... \n\n- **Citation**:\n\n @inproceedings{snli:emnlp2015,\n Author = {Bowman, Samuel R. and Angeli, Gabor and Potts, Christopher, and Manning, Christopher D.},\n Booktitle = {Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing (EMNLP)},\n Publisher = {Association for Computational Linguistics},\n Title = {A large annotated corpus for learning natural language inference},\n Year = {2015}\n }"]]