ryo0634 commited on
Commit
d1a88bb
·
1 Parent(s): 6ed868e
Files changed (2) hide show
  1. README.md +10 -10
  2. test/metadata.jsonl +3 -3
README.md CHANGED
@@ -10,7 +10,7 @@ language:
10
  ```python
11
  from datasets import load_dataset
12
 
13
- dataset = load_dataset("YANS-official/ogiri-dummy", split="test")
14
  ```
15
 
16
  ## 概要
@@ -22,12 +22,12 @@ dataset = load_dataset("YANS-official/ogiri-dummy", split="test")
22
  * text_image_to_text: 画像中にテキストが書かれています。テキストの一部が空欄になっているので、そこに穴埋めする形で回答を返します。
23
 
24
  ## データセットの各カラム説明
25
- | カラム名 | 型 | 例 | 概要 |
26
- |-----------------------|------| --- |-------------------------------------------------------------------------------------------------------------|
27
- | odai_id | str | "origi-dummy-1" | お題のID |
28
- | file_path | str | "dummy.png" | 画像のファイル名 |
29
- | type | str | "text_to_text" | "text_to_text", "image_to_text", "image_text_to_text"のどれかが入っている。 |
30
- | odai | str | この学会、なんだか疲れるなぁ…どんなの? | "text_to_text"の場合はお題。"image_to_text"の場合は"画像で一言"という文字列が格納されている。"image_text_to_text"は画像をOCRした結果に"[空欄]"が入ったもの。 |
31
- | responses | list | [{}] | お題に対する回答集。 |
32
- | responses.response_id | int | 1 | お題に対する回答の番号。 |
33
- | responses.text | str | フルリモート | そのお題に対する回答 |
 
10
  ```python
11
  from datasets import load_dataset
12
 
13
+ dataset = load_dataset("YANS-official/ogiri-debug", split="test")
14
  ```
15
 
16
  ## 概要
 
22
  * text_image_to_text: 画像中にテキストが書かれています。テキストの一部が空欄になっているので、そこに穴埋めする形で回答を返します。
23
 
24
  ## データセットの各カラム説明
25
+ | カラム名 | 型 | 例 | 概要 |
26
+ |-----------------------|------|------------------------|-------------------------------------------------------------------------------------------------------------|
27
+ | odai_id | str | "origi-dummy-1" | お題のID |
28
+ | file_path | str | "dummy.png" | 画像のファイル名 |
29
+ | type | str | "text_to_text" | "text_to_text", "image_to_text", "image_text_to_text"のどれかが入っている。 |
30
+ | odai | str | "この学会、なんだか疲れるなぁ…どんなの?" | "text_to_text"の場合はお題。"image_to_text"の場合は"画像で一言"という文字列が格納されている。"image_text_to_text"は画像をOCRした結果に"[空欄]"が入ったもの。 |
31
+ | responses | list | [{}] | お題に対する回答集。 |
32
+ | responses.response_id | int | 1 | お題に対する回答の番号。 |
33
+ | responses.text | str | "フルリモート" | そのお題に対する回答 |
test/metadata.jsonl CHANGED
@@ -1,3 +1,3 @@
1
- {"odai_id": "origi-dummy-1", "file_name": "dummy.png", "odai": "この学会、なんだか疲れるなぁ…どんなの?", "type": "text_to_text", "responses": [{"response_id": 1, "text": "フルリモート"}, {"response_id": 2, "text": "プレゼンが終わるたびに、論文のページ数分、拍手しなきゃいけない"}]}
2
- {"odai_id": "origi-dummy-2", "file_name": "de_melkmeid.jpg", "odai": "画像で一言", "type": "image_to_text", "responses": [{"response_id": 1, "text": "「チャラリー♪壺から牛乳~"}, {"response_id": 2, "text": "牛乳無くなっちゃった"}]}
3
- {"odai_id": "origi-dummy-3", "file_name": "ogon_batto.png", "odai": "「どろぼうの仲間だ」「ちがうよ!わしは[空欄]だけだ」", "type": "image_text_to_text", "responses": [{"response_id": 1, "text": "下着を盗もうとしただけだ"}, {"response_id": 2, "text": "善良な市民である"}]}
 
1
+ {"odai_id": "origi-debug-1", "file_name": "dummy.png", "odai": "この学会、なんだか疲れるなぁ…どんなの?", "type": "text_to_text", "responses": [{"response_id": 1, "text": "フルリモート"}, {"response_id": 2, "text": "プレゼンが終わるたびに、論文のページ数分、拍手しなきゃいけない"}]}
2
+ {"odai_id": "origi-debug-2", "file_name": "de_melkmeid.jpg", "odai": "画像で一言", "type": "image_to_text", "responses": [{"response_id": 1, "text": "「チャラリー♪壺から牛乳~"}, {"response_id": 2, "text": "牛乳無くなっちゃった"}]}
3
+ {"odai_id": "origi-debug-3", "file_name": "ogon_batto.png", "odai": "「どろぼうの仲間だ」「ちがうよ!わしは[空欄]だけだ」", "type": "image_text_to_text", "responses": [{"response_id": 1, "text": "下着を盗もうとしただけだ"}, {"response_id": 2, "text": "善良な市民である"}]}