retarfi commited on
Commit
e68e7f0
1 Parent(s): 9f40fc2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -3
README.md CHANGED
@@ -1,3 +1,49 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: ja
3
+ license: cc-by-4.0
4
+ task_categories:
5
+ - text-classification
6
+ size_categories:
7
+ - 100K<n<1M
8
+ ---
9
+
10
+
11
+ # economy-watchers-survey-evaluation
12
+ [Economy Watchers Survey](https://www5.cao.go.jp/keizai3/watcher-e/index-e.html) data.
13
+ It is automatically updated by GitHub Actions as the economy watcher is updated.
14
+ The original dataset is [retarfi/economy-watchers-survey](https://huggingface.co/datasets/retarfi/economy-watchers-survey).
15
+ Please refer to the following GitHub for the data acquisition and filtering process.
16
+ GitHub: https://github.com/retarfi/economy-watchers-survey
17
+
18
+ [景気ウォッチャー調査](https://www5.cao.go.jp/keizai3/watcher/watcher_menu.html)をタスク用に整形したデータです。
19
+ 元データは[retarfi/economy-watchers-survey](https://huggingface.co/datasets/retarfi/economy-watchers-survey)から利用可能です。
20
+ 自動更新はGitHub Actionsによって月次で行われます。
21
+ タスク用のデータセットは[retarfi/economy-watchers-survey-evaluation](https://huggingface.co/datasets/retarfi/economy-watchers-survey-evaluation)から利用可能です。
22
+ データ取得やフィルタリングのプロセスは以下のGitHubをご参照ください。
23
+ GitHub: https://github.com/retarfi/economy-watchers-survey
24
+
25
+
26
+
27
+ ## How to use
28
+
29
+
30
+ ```py
31
+ from datasets import load_dataset
32
+ ds = load_dataset(
33
+ "retarfi/economy-watchers-survey-evaluation",
34
+ name="sentiment",
35
+ ews_version="2024.06.0",
36
+ split="validation",
37
+ )
38
+ ```
39
+ The `name` can be selected from `sentiment`, `domain`, or `reason`.
40
+ If `ews_version` is not specified, the latest data will be read.
41
+ If `split` is specified, the data is read in `datasets.Dataset` format, otherwise in `datasets.DatasetDict` format.
42
+
43
+ `name`は`sentiment`、`domain`、`reason`から選択できます。
44
+ `ews_version`を指定しない場合、最新のデータが読み込まれます。
45
+ `split`を指定した場合は`datasets.Dataset`形式で、指定しない場合は`datasets.DatasetDict`形式で読み込まれます。
46
+
47
+
48
+ ## LICENSE
49
+ CC-BY 4.0