Datasets:

Modalities:
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
shmuhammad commited on
Commit
6868835
1 Parent(s): f04e8ac

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +87 -1
README.md CHANGED
@@ -386,4 +386,90 @@ configs:
386
  task_categories:
387
  - text-classification
388
  - sentence-similarity
389
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
386
  task_categories:
387
  - text-classification
388
  - sentence-similarity
389
+ ---
390
+ ## Dataset Description
391
+
392
+ - **Homepage:** https://github.com/semantic-textual-relatedness/Semantic_Relatedness_SemEval2024
393
+ - **Repository:** [GitHub](https://github.com/semantic-textual-relatedness/Semantic_Relatedness_SemEval2024)
394
+ - **Paper:** [SemRel2024: A Collection of Semantic Textual Relatedness Datasets for 14 Languages](https://arxiv.org/abs/2402.08638)
395
+ - **Leaderboard:** N/A
396
+ - **Point of Contact:** [Nedjma Ousidhoum](mailto:nedjma.ousidhoum@nyu.edu), [Shamsuddeen Hassan Muhammad](mailto:shamsuddeen2004@gmail.com)
397
+
398
+ ### Dataset Summary
399
+
400
+ SemRel2024 is a collection of Semantic Textual Relatedness (STR) datasets for 14 languages, including African and Asian languages. The dataset is designed for the SemEval-2024 Task 1: Semantic Textual Relatedness for African and Asian Languages. The task aims to evaluate the ability of systems to measure the semantic relatedness between two text segments, such as sentences or phrases.
401
+
402
+ ### Supported Tasks and Leaderboards
403
+
404
+ The SemRel2024 dataset can be used for the Semantic Textual Relatedness task, which involves predicting the degree of semantic relatedness between two text segments on a scale, typically from 0 (not related at all) to 5 (highly related).
405
+
406
+ [SemEval-2024 Task 1: Semantic Textual Relatedness for African and Asian Languages](https://github.com/semantic-textual-relatedness/Semantic_Relatedness_SemEval2024)
407
+
408
+ ### Languages
409
+
410
+ The SemRel2024 dataset covers the following 14 languages:
411
+
412
+ 1. Afrikaans (_afr_)
413
+ 2. Algerian Arabic (_arq_)
414
+ 3. Amharic (_amh_)
415
+ 4. English (_eng_)
416
+ 5. Hausa (_hau_)
417
+ 6. Indonesian (_ind_)
418
+ 7. Hindi (_hin_)
419
+ 8. Kinyarwanda (_kin_)
420
+ 9. Marathi (_mar_)
421
+ 10. Modern Standard Arabic (_arb_)
422
+ 11. Moroccan Arabic (_ary_)
423
+ 12. Punjabi (_pan_)
424
+ 13. Spanish (_esp_)
425
+ 14. Telugu (_tel_)
426
+
427
+ ## Dataset Structure
428
+
429
+ ### Data Instances
430
+
431
+ Each instance in the dataset consists of two text segments and a relatedness score indicating the degree of semantic relatedness between them.
432
+
433
+ {
434
+ "text1": "string",
435
+ "text2": "string",
436
+ "score": float
437
+ }
438
+
439
+ - text1: a string feature representing the first text segment.
440
+ - text2: a string feature representing the second text segment.
441
+ - score: a float value representing the semantic relatedness score between text1 and text2, typically ranging from 0 (not related at all) to 5 (highly related).
442
+
443
+
444
+ ## Citation Information
445
+
446
+ If you use the SemRel2024 dataset in your research, please cite the following papers:
447
+
448
+
449
+ @misc{ousidhoum2024semrel2024,
450
+ title={SemRel2024: A Collection of Semantic Textual Relatedness Datasets for 14 Languages},
451
+ author={Nedjma Ousidhoum and Shamsuddeen Hassan Muhammad and Mohamed Abdalla and Idris Abdulmumin and Ibrahim Said Ahmad and
452
+ Sanchit Ahuja and Alham Fikri Aji and Vladimir Araujo and Abinew Ali Ayele and Pavan Baswani and Meriem Beloucif and
453
+ Chris Biemann and Sofia Bourhim and Christine De Kock and Genet Shanko Dekebo and
454
+ Oumaima Hourrane and Gopichand Kanumolu and Lokesh Madasu and Samuel Rutunda and Manish Shrivastava and
455
+ Thamar Solorio and Nirmal Surange and Hailegnaw Getaneh Tilaye and Krishnapriya Vishnubhotla and Genta Winata and
456
+ Seid Muhie Yimam and Saif M. Mohammad},
457
+ year={2024},
458
+ eprint={2402.08638},
459
+ archivePrefix={arXiv},
460
+ primaryClass={cs.CL}
461
+ }
462
+
463
+
464
+ @inproceedings{ousidhoum-etal-2024-semeval,
465
+ title = "{S}em{E}val-2024 Task 1: Semantic Textual Relatedness for African and Asian Languages",
466
+ author = "Ousidhoum, Nedjma and Muhammad, Shamsuddeen Hassan and Abdalla, Mohamed and Abdulmumin, Idris and
467
+ Ahmad,Ibrahim Said and Ahuja, Sanchit and Aji, Alham Fikri and Araujo, Vladimir and Beloucif, Meriem and
468
+ De Kock, Christine and Hourrane, Oumaima and Shrivastava, Manish and Solorio, Thamar and Surange, Nirmal and
469
+ Vishnubhotla, Krishnapriya and Yimam, Seid Muhie and Mohammad, Saif M.",
470
+ booktitle = "Proceedings of the 18th International Workshop on Semantic Evaluation (SemEval-2024)",
471
+ year = "2024",
472
+ publisher = "Association for Computational Linguistics"
473
+ }
474
+
475
+ --------------------------------------------------------------------------------