File size: 1,922 Bytes
603f6e2
 
 
 
 
 
 
 
 
 
403af72
 
29e5c25
403af72
 
 
 
29e5c25
 
 
 
 
 
 
e2a3756
29e5c25
 
 
 
 
 
 
 
 
 
 
 
 
403af72
 
 
 
 
 
 
 
 
 
86100db
 
403af72
e2a3756
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
license: mit
task_categories:
- question-answering
language:
- en
tags:
- realtime
- news
---
# relive-qa

Re-hosting questions from RealtimeQA
while we discuss ways to continue posting articles + Q&A using a semi-automated format.

Suggestion: en.WikiNews.org

## Scraper version

Prerequisites: `pip install openai lxml cssselector requests xmltodict` and OpenAI API key

I've added two scripts:
- scrape.py : base script to load plain text from the latest WikiNews articles
- scrape_with_openai.py : pass scraped text to OpenAI's GPT-4o to generate questions and answers for each article
- scrape_morerecent_with_openai.py : scrape recent articles which WikiNews hasn't yet published from `Category:May 2024`, then use OpenAI's GPT-4o for Q&A

An LLM evaluated on this Q&A could read the WikiNews summary, the links collected from the story, or do its own web searches.

### Issues

- Prompt needs review to avoid making answer choices which are obvious or more specific than alternative choices.
- Questions and answers should be based on new information in the article, and not general knowledge.
- Links and the title may give away the answer as the subject of the article, rather than using reading comprehension.
- WikiNews articles may be niche or local stories, where facts are not known to an LLM unless it reads the specific article

## Original paper and dataset

https://github.com/realtimeqa/realtimeqa_public

Citation:

```
@inproceedings{
kasai2023realtime,
title={RealTime {QA}: What's the Answer Right Now?},
author={Jungo Kasai and Keisuke Sakaguchi and yoichi takahashi and Ronan Le Bras and Akari Asai and Xinyan Velocity Yu and Dragomir Radev and Noah A. Smith and Yejin Choi and Kentaro Inui},
booktitle={Thirty-seventh Conference on Neural Information Processing Systems Datasets and Benchmarks Track},
year={2023},
eprint={2207.13332},
url={https://openreview.net/forum?id=HfKOIPCvsv}
}
```