k-datasoft commited on
Commit
eaad3a0
·
verified ·
1 Parent(s): a3e1cc7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +38 -20
README.md CHANGED
@@ -1,22 +1,40 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: labels
5
- dtype: int64
6
- - name: time_series
7
- list:
8
- list: float64
9
- - name: texts
10
- dtype: string
11
- splits:
12
- - name: train
13
- num_bytes: 14531856
14
- num_examples: 13160
15
- download_size: 5211512
16
- dataset_size: 14531856
17
- configs:
18
- - config_name: default
19
- data_files:
20
- - split: train
21
- path: data/train-*
22
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - time-series-forecasting
5
+ - text-classification
6
+ language:
7
+ - ko
8
+ size_categories:
9
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
+
12
+ # TIPS Raw Test Dataset
13
+
14
+ ## Dataset Description
15
+
16
+ Raw OHLCV test data for multimodal stock anomaly prediction.
17
+ No technical indicators, no normalization/scaling applied.
18
+
19
+ ### Key Configuration
20
+
21
+ - **Sequence Length**: 10
22
+ - **Features**: ['open', 'high', 'low', 'close', 'volume'] (raw values)
23
+ - **Test Ratio**: 30% (most recent data)
24
+ - **Undersampling**: Majority class reduced to 10%
25
+ - **Label Distribution**: {0: 13116, 1: 44}
26
+ - **Total Samples**: 13160
27
+
28
+ ### Data Fields
29
+
30
+ - `labels`: int - Binary label (0: normal, 1: anomaly)
31
+ - `time_series`: array [10, 5] - Raw OHLCV values
32
+ - `texts`: string - Korean news text
33
+
34
+ ### Usage
35
+
36
+ ```python
37
+ from datasets import load_dataset
38
+
39
+ dataset = load_dataset("k-datasoft/Multimodal-test-dataset")
40
+ ```