Iker commited on
Commit
0f8a7d2
1 Parent(s): 145b6e0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -1
README.md CHANGED
@@ -4,7 +4,7 @@ dataset_info:
4
  features:
5
  - name: web_url
6
  dtype: string
7
- - name: web_title
8
  dtype: string
9
  - name: web_text
10
  dtype: string
@@ -33,4 +33,52 @@ configs:
33
  path: data/validation-*
34
  - split: test
35
  path: data/test-*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  features:
5
  - name: web_url
6
  dtype: string
7
+ - name: web_headline
8
  dtype: string
9
  - name: web_text
10
  dtype: string
 
33
  path: data/validation-*
34
  - split: test
35
  path: data/test-*
36
+ language:
37
+ - es
38
+ tags:
39
+ - summarization
40
+ - clickbait
41
+ - news
42
+ pretty_name: NoticIA
43
+ multilinguality:
44
+ - monolingual
45
+ source_datasets:
46
+ - original
47
+ task_categories:
48
+ - summarization
49
+ size_categories:
50
+ - n<1K
51
  ---
52
+
53
+ <p align="center">
54
+ <img src="https://huggingface.co/datasets/Iker/NoticIA/resolve/main/assets/logo.png" style="height: 250px;">
55
+ </p>
56
+
57
+ <h3 align="center">"A Spanish dataset for Clickbait articles summarization"</h3>
58
+
59
+ We introduce a dataset that contains articles with clickbait headlines. We provide the clickbait headline for the article, the corresponding web text, and the summary. The summaries are written by humans and aim to answer the clickbait headlines using the fewest words possible.
60
+
61
+
62
+ - 📖 Paper: [Coming soon]()
63
+ - 💻 Baseline Code: [https://github.com/ikergarcia1996/NoticIA](https://github.com/ikergarcia1996/NoticIA)
64
+ - 🔌 Online Demo: [https://iker-clickbaitfighter.hf.space/](https://iker-clickbaitfighter.hf.space/)
65
+
66
+ For example, given the following headline and web text:
67
+ ```
68
+ # ¿Qué pasará el 15 de enero de 2024?
69
+ Al parecer, no todo es dulzura en las vacaciones de fin de años, como lo demuestra la nueva intrig....
70
+ ```
71
+ The summary is:
72
+ ```
73
+ Que los estudiantes vuelven a clase.
74
+ ```
75
+
76
+
77
+ # Data explanation
78
+
79
+ - **web_url** (int): The URL of the news article
80
+ - **web_headline** (str): The headline of the article, which is a Clickbait.
81
+ - **web_text** (int): The body of the article.
82
+ - **clean_web_text** (str): The `web_text` has been downloaded from the web HTML and can contain undesired text not related to the news article. The `clean_web_text` has been cleaned using the OpenAI gpt-3.5-turbo-0125 model. We ask the model to remove any sentence unrelated to the article.
83
+ - **summary** (str): The summary written by humans that answers the clickbait headline.
84
+