sathyaram commited on
Commit
b83b136
·
verified ·
1 Parent(s): 76832e3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +119 -26
README.md CHANGED
@@ -1,26 +1,119 @@
1
- ---
2
- dataset_info:
3
- config_name: hi
4
- features:
5
- - name: Article Title
6
- dtype: string
7
- - name: Entity Name
8
- dtype: string
9
- - name: Wikidata ID
10
- dtype: string
11
- - name: English Wikipedia Title
12
- dtype: string
13
- - name: Image Name
14
- dtype: image
15
- splits:
16
- - name: train
17
- num_bytes: 1233713455.476
18
- num_examples: 1414
19
- download_size: 336952362
20
- dataset_size: 1233713455.476
21
- configs:
22
- - config_name: hi
23
- data_files:
24
- - split: train
25
- path: hi/train-*
26
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # MERLIN Dataset
3
+
4
+ ## Dataset Description
5
+
6
+ ### Overview
7
+ MERLIN (Multilingual Entity Recognition and Linking) is a test dataset for evaluating multilingual entity linking systems with multimodal inputs. The dataset contains news articles in multiple languages along with associated images and entity annotations.
8
+
9
+ ### Supported Tasks
10
+ - Multimodal Entity Linking
11
+ - Cross-lingual Entity Linking
12
+ - Named Entity Recognition
13
+
14
+ ### Languages
15
+ - Hindi
16
+ - [Add other languages present in your dataset]
17
+
18
+ ### Data Instances
19
+ Each instance in the dataset contains:
20
+ ```python
21
+ {
22
+ "Article Title": "बिहार: केंद्रीय मंत्री अश्विनी चौबे के बेटे अर्जित 'गिरफ्तार'", # Article title in original language
23
+ "Entity Name": "अश्विनी चौबे", # Entity mention in original language
24
+ "Wikidata ID": "Q16728021", # Unique Wikidata identifier
25
+ "English Wikipedia Title": "Ashwini Kumar Choubey", # Corresponding English Wikipedia title
26
+ "Image Name": "<GCS_URL>" # URL to associated image
27
+ }
28
+ ```
29
+
30
+ ### Data Fields
31
+ - `Article_Title`: The title of the news article in its original language
32
+ - `Entity_Name`: The name of the entity to be linked in its original language
33
+ - `Wikidata_ID`: The corresponding Wikidata identifier for the entity
34
+ - `English_Wikipedia_Title`: The English Wikipedia page title for the entity
35
+ - `image`: Associated image URL from Google Cloud Storage
36
+
37
+ ### Data Splits
38
+ The dataset contains only a test split with [number] examples.
39
+
40
+ ## Dataset Creation
41
+
42
+ ### Source Data
43
+ [Describe where the data comes from, e.g., news sources, etc.]
44
+
45
+ ### Annotations
46
+ [Describe how entities were annotated/linked]
47
+
48
+ ## Dataset Structure
49
+
50
+ ### Data Instances
51
+ Example of a data instance:
52
+ ```python
53
+ {
54
+ "Article_Title": "बिहार: केंद्रीय मंत्री अश्विनी चौबे के बेटे अर्जित 'गिरफ्तार'",
55
+ "Entity_Name": "अश्विनी चौबे",
56
+ "Wikidata_ID": "Q16728021",
57
+ "English_Wikipedia_Title": "Ashwini Kumar Choubey",
58
+ "Image_Name": "<GCS_URL>"
59
+ }
60
+ ```
61
+
62
+ ### Data Fields
63
+ - `Article_Title`: string
64
+ - `Entity_Name`: string
65
+ - `Wikidata_ID`: string
66
+ - `English_Wikipedia_Title`: string
67
+ - `image`: binary image data
68
+
69
+ ### Data Statistics
70
+ - Total number of instances: [number]
71
+ - Number of unique entities: [number]
72
+ - Languages covered: [list of languages]
73
+ - [Any other relevant statistics]
74
+
75
+ ## Dataset Creation
76
+
77
+ ### Curation Rationale
78
+ [Explain why this dataset was created]
79
+
80
+ ### Source Data
81
+ [Describe the source of the articles and images]
82
+
83
+ ### Annotations
84
+ [Describe the annotation process if any]
85
+
86
+ ## Considerations for Using the Data
87
+
88
+ ### Social Impact of Dataset
89
+ [Describe potential social impacts]
90
+
91
+ ### Discussion of Biases
92
+ [Discuss any potential biases in the data]
93
+
94
+ ### Other Known Limitations
95
+ [Describe any known limitations]
96
+
97
+ ## Additional Information
98
+
99
+ ### Dataset Curators
100
+ [Your name/organization]
101
+
102
+ ### Licensing Information
103
+ [License information]
104
+
105
+ ### Citation Information
106
+ ```bibtex
107
+ [Citation when available]
108
+ ```
109
+
110
+ ### Contributions
111
+ [How others can contribute to the dataset]
112
+
113
+ ## Related Work
114
+ This dataset can be used with the following baseline models:
115
+ 1. GEMEL (Generative Multimodal Entity Linking)
116
+ 2. GENRE (Generative ENtity REtrieval)
117
+
118
+ For more information about these baselines, visit: [Your repository URL]
119
+ ```