k-datasoft commited on
Commit
52c4b0f
·
verified ·
1 Parent(s): 58fa6ca

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +112 -56
README.md CHANGED
@@ -1,78 +1,134 @@
1
  ---
2
- license: mit
3
- task_categories:
4
- - time-series-forecasting
5
- - text-classification
6
  language:
7
- - ko
8
- size_categories:
9
- - 10K<n<100K
10
- dataset_info:
11
- features:
12
- - name: labels
13
- dtype: int64
14
- - name: time_series
15
- list:
16
- list: float64
17
- - name: texts
18
- dtype: string
19
- splits:
20
- - name: train
21
- num_bytes: 22975241
22
- num_examples: 10605
23
- download_size: 14726776
24
- dataset_size: 22975241
25
- configs:
26
- - config_name: default
27
- data_files:
28
- - split: train
29
- path: data/train-*
30
  ---
31
 
32
- # TIPS Multimodal Test Dataset
33
 
34
- ## Dataset Description
35
 
36
- This dataset contains test data for multimodal stock prediction using time series and text data.
 
37
 
38
- ### Dataset Structure
39
 
40
- - **labels**: Binary labels for stock price prediction (0: down/neutral, 1: up)
41
- - **time_series**: Time series features for stock data
42
- - **texts**: Korean news text data related to stocks
43
 
44
- ### Data Splits
45
 
46
- This is the test split of the TIPS multimodal dataset.
47
 
48
- ### Usage
 
49
 
50
- ```python
51
- from datasets import load_dataset
52
 
53
- dataset = load_dataset("k-datasoft/Multimodal-test-dataset-technicalindicators")
54
- ```
55
 
56
- ### Data Fields
57
 
58
- - `labels`: int - Binary classification label
59
- - `time_series`: array - Time series features
60
- - `texts`: string - Korean news text
 
 
61
 
62
- ### Citation
63
 
64
- If you use this dataset, please cite:
65
 
66
- ```
67
- @dataset{tips_multimodal_test,
68
- title={TIPS Multimodal Test Dataset},
69
- author={Your Name},
70
- year={2025},
71
- publisher={Hugging Face},
72
- url={https://huggingface.co/datasets/k-datasoft/Multimodal-test-dataset-technicalindicators}
73
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  ```
75
 
76
- ### License
77
 
78
  MIT License
 
1
  ---
 
 
 
 
2
  language:
3
+ - ko
4
+ pretty_name: "KRX Investment Warning Prediction Dataset (OHLCV + Technical Indicators + Korean News)"
5
+ tags:
6
+ - finance
7
+ - krx
8
+ - korea
9
+ - time-series
10
+ - ohlcv
11
+ - technical-indicators
12
+ - news
13
+ - multimodal
14
+ - anomaly-detection
15
+ - binary-classification
16
+ task_categories:
17
+ - text-classification
18
+ - time-series-forecasting
19
+ task_ids:
20
+ - binary-classification
21
+ license: mit
 
 
 
 
22
  ---
23
 
24
+ # KRX Investment Warning Prediction Dataset (OHLCV + Technical Indicators + Korean News)
25
 
26
+ ## Dataset Summary
27
 
28
+ This dataset is a test dataset for predicting **Investment Warning (투자주의종목)** designations in the Korean stock market (KRX).
29
+ It contains **raw daily OHLCV** price data, **13 technical indicators**, and **Korean news text** (title + body), designed for **multimodal anomaly detection / binary classification**.
30
 
31
+ **Important:** No normalization/scaling is applied. All values are raw.
32
 
33
+ - **Date range:** 2025-07-01 ~ 2025-09-30
34
+ - **Prediction horizon:** whether a stock will be designated as an investment warning **within the next 1 trading day**
 
35
 
36
+ ## Task
37
 
38
+ Binary classification:
39
 
40
+ - **Label 0:** Normal trading (no investment warning designation within the next 1 trading day)
41
+ - **Label 1:** Investment warning designation (within the next 1 trading day)
42
 
43
+ ### Label Alignment
 
44
 
45
+ For each `(ticker, date=t)`, set `label=1` if the stock is designated as an investment warning on `t+1` (the next trading day).
 
46
 
47
+ ## Data Sources
48
 
49
+ | Source | Description |
50
+ |------|-------------|
51
+ | **Stock Prices** | Daily OHLCV data for KRX listed stocks |
52
+ | **Investment Warning** | KRX investment warning designation history (labels) |
53
+ | **News** | Korean news articles per stock (title + body) |
54
 
55
+ ## Dataset Format
56
 
57
+ This dataset is structured to be used directly with Hugging Face `datasets`, and consists of **three columns**:
58
 
59
+ - **`labels`**: Binary label (`0` or `1`)
60
+ - **`time_series`**: Price time-series information (OHLCV + Technical Indicators)
61
+ - **`texts`**: Korean news text mapped to the corresponding stock (title + body)
62
+
63
+ ### Example (Conceptual)
64
+
65
+ - `labels`: `0` or `1`
66
+ - `time_series`: `[[open, high, low, close, volume, rsi, macd, macd_signal, macd_hist, bb_upper, bb_middle, bb_lower, bb_width, sma_5, sma_20, ema_9, atr, obv], ...]`
67
+ - `texts`: `["article1 ...", "article2 ..."]`
68
+
69
+ ## Feature Details
70
+
71
+ ### Price & Indicators — `time_series`
72
+
73
+ Each sample has shape `[10, 18]` with the following 18 features:
74
+
75
+ | Index | Feature | Description |
76
+ |-------|---------|-------------|
77
+ | 0 | `open` | Opening price (KRW) |
78
+ | 1 | `high` | High price (KRW) |
79
+ | 2 | `low` | Low price (KRW) |
80
+ | 3 | `close` | Closing price (KRW) |
81
+ | 4 | `volume` | Trading volume (shares) |
82
+ | 5 | `rsi` | Relative Strength Index (14-period) |
83
+ | 6 | `macd` | MACD line (12, 26) |
84
+ | 7 | `macd_signal` | MACD signal line (9-period) |
85
+ | 8 | `macd_hist` | MACD histogram |
86
+ | 9 | `bb_upper` | Bollinger Band upper (20, 2std) |
87
+ | 10 | `bb_middle` | Bollinger Band middle (20-SMA) |
88
+ | 11 | `bb_lower` | Bollinger Band lower (20, 2std) |
89
+ | 12 | `bb_width` | Bollinger Band width (normalized) |
90
+ | 13 | `sma_5` | Simple Moving Average (5-period) |
91
+ | 14 | `sma_20` | Simple Moving Average (20-period) |
92
+ | 15 | `ema_9` | Exponential Moving Average (9-period) |
93
+ | 16 | `atr` | Average True Range (14-period) |
94
+ | 17 | `obv` | On-Balance Volume |
95
+
96
+ - **No normalization/scaling** is applied. All values are raw.
97
+ - **Currency unit:** KRW
98
+ - **Volume:** number of shares (not value)
99
+ - Technical indicators are computed with a lookback of 35 days to ensure stable values.
100
+
101
+ ### News — `texts`
102
+
103
+ - News is mapped to tickers via an **exact ticker-code mapping**.
104
+ - **Deduplication** has been applied.
105
+ - Each news item includes **title + body** (concatenated as a single string).
106
+
107
+ ## Dataset Statistics
108
+
109
+ - **Total Samples**: 10,605
110
+ - **Label Distribution**: {0: 10570, 1: 35}
111
+ - **Sequence Length**: 10
112
+ - **Features per timestep**: 18
113
+ - **Undersampling**: Majority class reduced to 10%
114
+
115
+ ## Recommended Metrics
116
+
117
+ Because investment warning events are likely to be rare (class imbalance), the following metrics are recommended:
118
+
119
+ - ROC-AUC, PR-AUC
120
+ - F1 (positive class), precision/recall
121
+ - Precision/recall at Top-k (useful for practical detection scenarios)
122
+ - (Optional) probability calibration
123
+
124
+ ## Usage
125
+
126
+ ```python
127
+ from datasets import load_dataset
128
+
129
+ dataset = load_dataset("k-datasoft/Multimodal-test-dataset-technicalindicators")
130
  ```
131
 
132
+ ## License
133
 
134
  MIT License