Datasets:

ArXiv:
richardblythman commited on
Commit
84ca698
·
1 Parent(s): ef16576

rename files and update readme

Browse files
.gitattributes CHANGED
@@ -56,3 +56,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
56
  autocast_questions.json filter=lfs diff=lfs merge=lfs -text
57
  train.json filter=lfs diff=lfs merge=lfs -text
58
  olas_benchmark.json filter=lfs diff=lfs merge=lfs -text
 
 
 
56
  autocast_questions.json filter=lfs diff=lfs merge=lfs -text
57
  train.json filter=lfs diff=lfs merge=lfs -text
58
  olas_benchmark.json filter=lfs diff=lfs merge=lfs -text
59
+ autocast_questions_filtered.json filter=lfs diff=lfs merge=lfs -text
60
+ autocast_questions_filtered.pkl filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,18 +1,37 @@
1
 
2
- # Forecasting Future World Events with Neural Networks
 
 
 
 
 
 
 
 
 
3
 
4
- This is an (unofficial) repository for "[Forecasting Future World Events with Neural Networks](http://arxiv.org/abs/2206.15474)"
5
- by [Andy Zou](https://andyzoujm.github.io/), [Tristan Xiao](https://www.linkedin.com/in/tristan-xiao/), [Ryan Jia](https://www.linkedin.com/in/ryanjia/), [Joe Kwon](joekwon.io), [Mantas Mazeika](https://www.linkedin.com/in/mmazeika/), [Richard Li](https://www.linkedin.com/in/lirichard23/), [Dawn Song](https://people.eecs.berkeley.edu/~dawnsong/), [Jacob Steinhardt](https://www.stat.berkeley.edu/~jsteinhardt/), [Owain Evans](https://owainevans.github.io/), and [Dan Hendrycks](https://danhendrycks.com/).
 
 
 
 
 
 
 
 
6
 
7
  <img align="center" src="assets/splash.png" width="750">
8
 
 
 
9
  ## Introduction
10
 
11
  Forecasting future world events is a challenging but valuable task. Forecasts of climate, geopolitical conflict, pandemics and economic indicators help shape policy and decision making. In these domains, the judgment of expert humans contributes to the best forecasts. Given advances in language modeling, can these forecasts be automated? To this end, we introduce Autocast, a dataset containing thousands of forecasting questions and an accompanying news corpus. Questions are taken from forecasting tournaments, ensuring high quality, real-world importance, and diversity. The news corpus is organized by date, allowing us to precisely simulate the conditions under which humans made past forecasts (avoiding leakage from the future). We test language models on our forecasting task and find that performance is far below a human expert baseline. However, performance improves with increased model size and incorporation of relevant information from the news corpus. In sum, Autocast poses a novel challenge for large language models and improved performance could bring large practical benefits.
12
 
13
  ## Autocast Dataset
14
 
15
- The original version of the [Autocast dataset can be downloaded here](https://people.eecs.berkeley.edu/~hendrycks/autocast.tar.gz). For more details on how to use the Autocast dataset and news articles, please refer to our short demonstration in `usage.ipynb`.
16
 
17
  Each question has the following fields:
18
  ```json
@@ -34,17 +53,17 @@ Each question has the following fields:
34
  }
35
  ```
36
 
37
- The authors obtained permission from [Metaculus](https://www.metaculus.com/) to host the dataset on GitHub for research purposes only.
38
 
39
  ## IntervalQA Dataset
40
 
41
- Motivated by the difficulty of forecasting numbers across orders of magnitude (e.g. global cases of COVID-19 in 2022), we also curate IntervalQA, a dataset of numerical questions and metrics for calibration.
42
 
43
  [Download the IntervalQA dataset here](https://people.eecs.berkeley.edu/~hendrycks/intervalqa.tar.gz).
44
 
45
  ## Citation
46
 
47
- If you find this useful in your research, please consider citing:
48
 
49
  @article{zouforecasting2022,
50
  title={Forecasting Future World Events with Neural Networks},
 
1
 
2
+ # Autocast
3
+
4
+ This is the Autocast dataset from the paper "[Forecasting Future World Events with Neural Networks](http://arxiv.org/abs/2206.15474)" by [Andy Zou](https://andyzoujm.github.io/), [Tristan Xiao](https://www.linkedin.com/in/tristan-xiao/), [Ryan Jia](https://www.linkedin.com/in/ryanjia/), [Joe Kwon](joekwon.io), [Mantas Mazeika](https://www.linkedin.com/in/mmazeika/), [Richard Li](https://www.linkedin.com/in/lirichard23/), [Dawn Song](https://people.eecs.berkeley.edu/~dawnsong/), [Jacob Steinhardt](https://www.stat.berkeley.edu/~jsteinhardt/), [Owain Evans](https://owainevans.github.io/), and [Dan Hendrycks](https://danhendrycks.com/).
5
+
6
+ The original dataset files are:
7
+ - `autocast_questions.json`
8
+ - `autocast_competition_test_set.json`
9
+ - `negated_tf_questions.json`
10
+
11
+ We have also processed the dataset to filter out source links with:
12
 
13
+ - URLs returning non-200 HTTP status codes
14
+ - URLs from sites that are difficult to scrape like twitter, bloomberg
15
+ - Links with less than 1000 words are removed.
16
+
17
+ Only samples with a minimum of 5 working URLs are retained. The maximum number of working source links is 20.
18
+
19
+ The refined dataset files are:
20
+ - `autocast_questions_filtered.json` - a JSON subset of the initial autocast dataset.
21
+ - `autocast_questions_filtered.pkl` - a pickle file mapping URLs to the scraped data.
22
+ - `retrieved_docs.pkl` - this contains all texts that were retrieved.
23
 
24
  <img align="center" src="assets/splash.png" width="750">
25
 
26
+ # Forecasting Future World Events with Neural Networks
27
+
28
  ## Introduction
29
 
30
  Forecasting future world events is a challenging but valuable task. Forecasts of climate, geopolitical conflict, pandemics and economic indicators help shape policy and decision making. In these domains, the judgment of expert humans contributes to the best forecasts. Given advances in language modeling, can these forecasts be automated? To this end, we introduce Autocast, a dataset containing thousands of forecasting questions and an accompanying news corpus. Questions are taken from forecasting tournaments, ensuring high quality, real-world importance, and diversity. The news corpus is organized by date, allowing us to precisely simulate the conditions under which humans made past forecasts (avoiding leakage from the future). We test language models on our forecasting task and find that performance is far below a human expert baseline. However, performance improves with increased model size and incorporation of relevant information from the news corpus. In sum, Autocast poses a novel challenge for large language models and improved performance could bring large practical benefits.
31
 
32
  ## Autocast Dataset
33
 
34
+ The original [Autocast dataset can be downloaded here](https://people.eecs.berkeley.edu/~hendrycks/autocast.tar.gz). For more details on how to use the Autocast dataset and news articles, please refer to our short demonstration in `usage.ipynb`.
35
 
36
  Each question has the following fields:
37
  ```json
 
53
  }
54
  ```
55
 
56
+ The original authors obtained permission from [Metaculus](https://www.metaculus.com/) to host the dataset on GitHub for research purposes only.
57
 
58
  ## IntervalQA Dataset
59
 
60
+ Motivated by the difficulty of forecasting numbers across orders of magnitude (e.g. global cases of COVID-19 in 2022), the original authors also curate IntervalQA, a dataset of numerical questions and metrics for calibration.
61
 
62
  [Download the IntervalQA dataset here](https://people.eecs.berkeley.edu/~hendrycks/intervalqa.tar.gz).
63
 
64
  ## Citation
65
 
66
+ If you find this useful in your research, please consider citing the original authors:
67
 
68
  @article{zouforecasting2022,
69
  title={Forecasting Future World Events with Neural Networks},
test.json → autocast_competition_test_set.json RENAMED
File without changes
train.json → autocast_questions.json RENAMED
File without changes
olas_benchmark.json → autocast_questions_filtered.json RENAMED
File without changes
olas_docs.pkl → autocast_questions_filtered.pkl RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d790dc47903764410663439768371988bab221093cc09588adc03cb75fcc549e
3
- size 2115096234
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:682e4ce7fe573e466842f3c0f05db188a101241de9d9b6961f581422a7573baa
3
+ size 2115098767