Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
10K<n<100K
Language Creators:
crowdsourced
Annotations Creators:
crowdsourced
ArXiv:
Tags:
toloka
License:
dustalov Senarect commited on
Commit
b046426
1 Parent(s): 4a0733b

The text-grammar check (#6)

Browse files

- The text-grammar check (b6bbd8c9594801b925487ae6aef0ebc033df3f4a)


Co-authored-by: Denis Fraltsov <Senarect@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +11 -14
README.md CHANGED
@@ -74,7 +74,7 @@ Context dataset, [MS COCO](https://cocodataset.org/). All data labeling was perf
74
 
75
  Our dataset has 45,199 instances split among three subsets: train (38,990 instances), public test (1,705 instances),
76
  and private test (4,504 instances). The entire train dataset was available for everyone since the start of the challenge.
77
- The public test dataset was available since the evaluation phase of the competition, but without any ground truth labels.
78
  After the end of the competition, public and private sets were released.
79
 
80
  ## Dataset Citation
@@ -108,10 +108,7 @@ English
108
  ## Dataset Structure
109
 
110
  ### Data Instances
111
- A data instance contains a url to the picture, information about the image size - width and height,
112
- information about ground truth bounding box - left top and right bottom dots,
113
- contains the question related to the picture.
114
- image,width,height,left,top,right,bottom,question
115
  ```
116
  {'image': https://toloka-cdn.azureedge.net/wsdmcup2023/000000000013.jpg,
117
  'width': 640,
@@ -124,19 +121,19 @@ image,width,height,left,top,right,bottom,question
124
  ```
125
  ### Data Fields
126
 
127
- * image: contains url to the image
128
  * width: value in pixels of image width
129
- * heigth: value in pixels of image height
130
- * left: the x coordinate in pixels to determin left-top dot of bounding box
131
- * top: the y coordinate in pixels to determin left-top dot of bounding box
132
- * right: the x coordinate in pixels to determin right-bottom dot of bounding box
133
- * bottom: the y coordinate in pixels to determin right-bottom dot of bounding box
134
  * question: a question related to the picture
135
 
136
  ### Data Splits
137
- There are four splits in the data: train, train_sample, test_public, test_private. 'train' split contains the full pull for model training.
138
- 'train-sample' split contains the part of 'train' split. 'test_public' split contains public data to test the model.
139
- 'test_private' split contains private data for final model test.
140
 
141
  ### Source Data
142
 
 
74
 
75
  Our dataset has 45,199 instances split among three subsets: train (38,990 instances), public test (1,705 instances),
76
  and private test (4,504 instances). The entire train dataset was available for everyone since the start of the challenge.
77
+ The public test dataset was available since the evaluation phase of the competition but without any ground truth labels.
78
  After the end of the competition, public and private sets were released.
79
 
80
  ## Dataset Citation
 
108
  ## Dataset Structure
109
 
110
  ### Data Instances
111
+ A data instance contains a URL to the picture, information about the image size - width and height, information about the ground truth bounding box - left top and right bottom dots, and contains the question related to the picture.
 
 
 
112
  ```
113
  {'image': https://toloka-cdn.azureedge.net/wsdmcup2023/000000000013.jpg,
114
  'width': 640,
 
121
  ```
122
  ### Data Fields
123
 
124
+ * image: contains URL to the image
125
  * width: value in pixels of image width
126
+ * height: value in pixels of image height
127
+ * left: the x coordinate in pixels to determine the left-top dot of the bounding box
128
+ * top: the y coordinate in pixels to determine the left-top dot of the bounding box
129
+ * right: the x coordinate in pixels to determine the right-bottom dot of the bounding box
130
+ * bottom: the y coordinate in pixels to determine the right-bottom dot of the bounding box
131
  * question: a question related to the picture
132
 
133
  ### Data Splits
134
+ There are four splits in the data: train, train_sample, test_public, and test_private. 'train' split contains the full pull for model training.
135
+ The 'train-sample' split contains the part of the 'train' split. The 'test_public' split contains public data to test the model.
136
+ The 'test_private' split contains private data for the final model test.
137
 
138
  ### Source Data
139