Datasets:
image imagewidth (px) 100 796 | odai_id stringclasses 3 values | odai stringclasses 3 values | type stringclasses 3 values |
|---|---|---|---|
origi-debug-2 | 画像で一言 | image_to_text | |
origi-debug-1 | この学会、なんだか疲れるなぁ…どんなの? | text_to_text | |
origi-debug-3 | 「どろぼうの仲間だ」「ちがうよ!わしは[空欄]だけだ」 | image_text_to_text |
YAML Metadata Warning: The task_categories "text2text-generation" is not in the official list: text-classification, token-classification, table-question-answering, question-answering, zero-shot-classification, translation, summarization, feature-extraction, text-generation, fill-mask, sentence-similarity, text-to-speech, text-to-audio, automatic-speech-recognition, audio-to-audio, audio-classification, audio-text-to-text, voice-activity-detection, depth-estimation, image-classification, object-detection, image-segmentation, text-to-image, image-to-text, image-to-image, image-to-video, unconditional-image-generation, video-classification, reinforcement-learning, robotics, tabular-classification, tabular-regression, tabular-to-text, table-to-text, multiple-choice, text-ranking, text-retrieval, time-series-forecasting, text-to-video, image-text-to-text, image-text-to-image, image-text-to-video, visual-question-answering, document-question-answering, zero-shot-image-classification, graph-ml, mask-generation, zero-shot-object-detection, text-to-3d, image-to-3d, image-feature-extraction, video-text-to-text, keypoint-detection, visual-document-retrieval, any-to-any, video-to-video, other
読み込み方
from datasets import load_dataset
dataset = load_dataset("YANS-official/ogiri-debug", split="test")
概要
大喜利生成の動作確認用データセットです。
以下の3タスクが含まれます。
- text_to_text: テキストでお題が渡され、それに対する回答を返します。
- image_to_text: いわゆる「画像で一言」です。画像のみが渡されて、テキストによる回答を返します。
- text_image_to_text: 画像中にテキストが書かれています。テキストの一部が空欄になっているので、そこに穴埋めする形で回答を返します。
データセットの各カラム説明
| カラム名 | 型 | 例 | 概要 |
|---|---|---|---|
| odai_id | str | "origi-dummy-1" | お題のID |
| file_path | str | "dummy.png" | 画像のファイル名 |
| type | str | "text_to_text" | "text_to_text", "image_to_text", "image_text_to_text"のどれかが入っている。 |
| odai | str | "この学会、なんだか疲れるなぁ…どんなの?" | "text_to_text"の場合はお題。"image_to_text"の場合は"画像で一言"という文字列が格納されている。"image_text_to_text"は画像をOCRした結果に"[空欄]"が入ったもの。 |
- Downloads last month
- 8