DarthReca commited on
Commit
8d9f0f4
1 Parent(s): 8cafc62

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -13
README.md CHANGED
@@ -7,23 +7,38 @@ size_categories:
7
  - n<1K
8
  configs:
9
  - config_name: last
10
- data_files: "data/last/*"
11
  - config_name: previous
12
- data_files: "data/previous/*"
 
 
 
 
13
  ---
14
  # Dataset Card for But They Are Cats Tutorials
15
 
16
  <!-- Provide a quick summary of the dataset. -->
17
 
18
- This is the dataset presented and used in [Level Up Your Tutorials: VLMs for Game Tutorials Quality Assessment](https://arxiv.org/abs/2408.08396).
19
 
20
  ## Dataset Details
21
 
22
- ### Dataset Description
23
-
24
  <!-- Provide a longer summary of what this dataset is. -->
 
 
 
 
25
 
 
26
 
 
 
 
 
 
 
 
 
27
 
28
  - **Curated by:** Daniele Rege Cambrin
29
  - **License:** OPENRAIL
@@ -32,21 +47,29 @@ This is the dataset presented and used in [Level Up Your Tutorials: VLMs for Gam
32
 
33
  <!-- Address questions around how the dataset is intended to be used. -->
34
 
35
- [More Information Needed]
 
36
 
37
  ## Dataset Structure
38
 
39
  <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
40
 
41
- [More Information Needed]
 
 
 
 
 
 
 
42
 
43
  ## Dataset Creation
44
- The dataset is composed of videos, frames, and textual annotation in the form of questions and answers.
45
 
46
  ### Source Data
47
 
48
  <!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
49
- All the videos in both versions are recorded by Daniele Rege Cambrin to grant a similar way of playing [But They Are Cats](https://thefellowshipofthebox.itch.io/but-they-are-cats).
50
  The frames are extracted from these videos when something "relevant" happens.
51
  The two versions are selected between all possible commits to balancing similarities and differences for a fairer evaluation.
52
 
@@ -54,15 +77,16 @@ The two versions are selected between all possible commits to balancing similari
54
 
55
  <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
56
 
57
- The annotation is provided by one of the developers (Daniele Rege Cambrin) to ensure maximum adherence to the real developer expectations.
58
- The frame selection is also done by the same person.
59
 
60
  ## Bias, Risks, and Limitations
61
 
62
  <!-- This section is meant to convey both technical and sociotechnical limitations. -->
63
 
64
- The annotations are created by a single user and could be biased towards his vision of the game.
65
- The game itself does not represent all possible scenarios in game development and careful evaluation should be done in other scenarios.
 
66
  The recorded tutorials do not cover all possible user interactions and should not be used for bug searching.
67
 
68
  ## Citation
 
7
  - n<1K
8
  configs:
9
  - config_name: last
10
+ data_files: data/last/*
11
  - config_name: previous
12
+ data_files: data/previous/*
13
+ language:
14
+ - en
15
+ tags:
16
+ - art
17
  ---
18
  # Dataset Card for But They Are Cats Tutorials
19
 
20
  <!-- Provide a quick summary of the dataset. -->
21
 
22
+ This dataset is presented and used in [Level Up Your Tutorials: VLMs for Game Tutorials Quality Assessment](https://arxiv.org/abs/2408.08396).
23
 
24
  ## Dataset Details
25
 
 
 
26
  <!-- Provide a longer summary of what this dataset is. -->
27
+ The dataset is designed for Visual Question answering. It is composed of game screenshots, questions, and answers.
28
+ The questions and the answers are direct to provide a more effective evaluation independent of the syntax.
29
+
30
+ <img width="50%" height="50%" src="data/last/3_00-32.png">
31
 
32
+ **Question**: "Do distractions affect the cats in the same way?" **Answer**: "The distraction affects the types of cats in different ways."
33
 
34
+ We provided two versions of the game after developers ran human testing.
35
+ The dataset can be loaded:
36
+ ```python
37
+ # Latest Version
38
+ load_dataset("DarthReca/but-they-are-cats-tutorial", name="last")
39
+ # Previous Version
40
+ load_dataset("DarthReca/but-they-are-cats-tutorial", name="previous")
41
+ ```
42
 
43
  - **Curated by:** Daniele Rege Cambrin
44
  - **License:** OPENRAIL
 
47
 
48
  <!-- Address questions around how the dataset is intended to be used. -->
49
 
50
+ The dataset is intended to evaluate the quality of scene explanations from both textual and visual aspects.
51
+ It is not designed to benchmark Visual-Language models since some scenes could be ambiguous or unclear.
52
 
53
  ## Dataset Structure
54
 
55
  <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
56
 
57
+ The dataset has the following format:
58
+ ```bash
59
+ {
60
+ image: Image,
61
+ question: List[Text]
62
+ answer: List[Text]
63
+ }
64
+ ```
65
 
66
  ## Dataset Creation
67
+ The dataset comprises videos, frames, and textual annotations in the form of questions and answers.
68
 
69
  ### Source Data
70
 
71
  <!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
72
+ Daniele Rege Cambrin records all the videos in both versions to grant a similar way of playing [But They Are Cats](https://thefellowshipofthebox.itch.io/but-they-are-cats).
73
  The frames are extracted from these videos when something "relevant" happens.
74
  The two versions are selected between all possible commits to balancing similarities and differences for a fairer evaluation.
75
 
 
77
 
78
  <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
79
 
80
+ One of the developers (Daniele Rege Cambrin) provides the annotation to ensure maximum adherence to the actual developer's expectations.
81
+ The same person also does the frame selection.
82
 
83
  ## Bias, Risks, and Limitations
84
 
85
  <!-- This section is meant to convey both technical and sociotechnical limitations. -->
86
 
87
+ A single user creates the annotations and could be biased towards his vision of the game.
88
+ The game itself does not represent all possible scenarios in game development, and careful evaluation should be performed in other scenarios.
89
+ The game is an unfinished prototype and should be considered when compared to a finished product.
90
  The recorded tutorials do not cover all possible user interactions and should not be used for bug searching.
91
 
92
  ## Citation