|
--- |
|
language: ja |
|
license: cc-by-4.0 |
|
task_categories: |
|
- text-classification |
|
size_categories: |
|
- 100K<n<1M |
|
--- |
|
|
|
|
|
# economy-watchers-survey-evaluation |
|
[Economy Watchers Survey](https://www5.cao.go.jp/keizai3/watcher-e/index-e.html) data. |
|
It is automatically updated by GitHub Actions as the economy watcher is updated. |
|
The original dataset is [retarfi/economy-watchers-survey](https://huggingface.co/datasets/retarfi/economy-watchers-survey). |
|
|
|
[景気ウォッチャー調査](https://www5.cao.go.jp/keizai3/watcher/watcher_menu.html)をタスク用に整形したデータです。 |
|
元データは[retarfi/economy-watchers-survey](https://huggingface.co/datasets/retarfi/economy-watchers-survey)から利用可能です。 |
|
自動更新はGitHub Actionsによって月次で行われます。 |
|
タスク用のデータセットは[retarfi/economy-watchers-survey-evaluation](https://huggingface.co/datasets/retarfi/economy-watchers-survey-evaluation)から利用可能です。 |
|
|
|
|
|
## Data detail |
|
Please refer to the following papers for the data detail. |
|
データの詳細は、以下の論文を参照してください。 |
|
|
|
- English paper: https://arxiv.org/abs/2407.14727 |
|
- GitHub: https://github.com/retarfi/economy-watchers-survey |
|
|
|
For citation: |
|
``` |
|
@preprint{suzuki2024-ews, |
|
title={{Economy Watchers Survey provides Datasets and Tasks for Japanese Financial Domain}}, |
|
author={Masahiro Suzuki and Hiroki Sakaji}, |
|
year={2024}, |
|
doi={10.48550/arXiv.2407.14727}, |
|
} |
|
``` |
|
|
|
|
|
## How to use |
|
|
|
|
|
```py |
|
# datasets >= 2.15.0 is required |
|
from datasets import load_dataset |
|
ds = load_dataset( |
|
"retarfi/economy-watchers-survey-evaluation", |
|
name="sentiment", |
|
ews_version="2024.06.0", |
|
split="validation", |
|
) |
|
``` |
|
The `name` can be selected from `sentiment`, `domain`, or `reason`. |
|
If `ews_version` is not specified, the latest data will be read. |
|
If `split` is specified, the data is read in `datasets.Dataset` format, otherwise in `datasets.DatasetDict` format. |
|
|
|
`name`は`sentiment`、`domain`、`reason`から選択できます。 |
|
`ews_version`を指定しない場合、最新のデータが読み込まれます。 |
|
`split`を指定した場合は`datasets.Dataset`形式で、指定しない場合は`datasets.DatasetDict`形式で読み込まれます。 |
|
|
|
|
|
## LICENSE |
|
CC-BY 4.0 |
|
|