marcosfp commited on
Commit
9789507
·
verified ·
1 Parent(s): f5a817d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -0
README.md CHANGED
@@ -23,3 +23,63 @@ configs:
23
  - split: train
24
  path: data/train-*
25
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  - split: train
24
  path: data/train-*
25
  ---
26
+
27
+ # 🎲 LudoSym: Gambling Addiction IR Dataset (Spanish)
28
+
29
+ ## Overview
30
+
31
+ This dataset accompanies the paper:
32
+
33
+ **Analyzing Gambling Addictions: A Spanish Corpus for Understanding Pathological Behavior**
34
+ Manuel Couto-Pintos, Marcos Fernández-Pichel, Mario Ezra Aragón, David E. Losada
35
+ *Findings of the Association for Computational Linguistics: EMNLP 2025*
36
+
37
+ The dataset is designed to support **information retrieval and ranking research** focused on the detection and analysis of **gambling addiction symptoms** from Spanish text. It enables the evaluation and training of retrieval models that associate user-defined symptom queries with relevant textual evidence.
38
+
39
+ ---
40
+
41
+ ## Task Description
42
+
43
+ The dataset follows a **standard IR / ranking formulation**:
44
+
45
+ - **Queries** represent standardized gambling addiction symptoms.
46
+ - **Documents** are short Spanish text passages related to gambling behavior.
47
+ - **Relevance judgments (qrels)** indicate how relevant each document is for a given symptom query.
48
+
49
+ The task is to **rank documents by relevance for each query**, enabling:
50
+ - neural ranking
51
+ - symptom screening
52
+ - cross-encoder and bi-encoder training
53
+ - IR evaluation (e.g., nDCG, MAP, Recall)
54
+
55
+ ---
56
+
57
+ ## Dataset Structure
58
+
59
+ Each example in the dataset has the following fields:
60
+
61
+ | Field | Type | Description |
62
+ |------------|---------|-------------|
63
+ | `query_id` | int | Unique identifier of the symptom query |
64
+ | `doc_id` | int | Unique identifier of the document |
65
+ | `query` | string | Text of the gambling addiction symptom |
66
+ | `document` | string | Spanish text passage |
67
+ | `relevance`| float | Relevance score between the query and the document |
68
+
69
+
70
+ ## Citation
71
+
72
+ If you use this resource, please cite:
73
+
74
+ ```
75
+ @inproceedings{couto-etal-2025,
76
+ title = "Analyzing Gambling Addictions: A Spanish Corpus for Understanding Pathological Behavior",
77
+ author = "Couto-Pintos, Manuel and
78
+ Fernández-Pichel, Marcos and
79
+ Aragón, Mario Ezra and
80
+ Losada, David E.",
81
+ booktitle = "Findings of the 2025 Conference on Empirical Methods in Natural Language Processing (EMNLP)"
82
+ }
83
+ ```
84
+
85
+