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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -27
README.md CHANGED
@@ -1,40 +1,94 @@
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
- ```
 
 
 
1
  ---
 
 
 
 
2
  language:
3
+ - ko
4
+ pretty_name: "KRX Investment Warning Prediction Dataset (OHLCV + Korean News)"
5
+ tags:
6
+ - finance
7
+ - krx
8
+ - korea
9
+ - time-series
10
+ - ohlcv
11
+ - news
12
+ - multimodal
13
+ - anomaly-detection
14
+ - binary-classification
15
+ task_categories:
16
+ - text-classification
17
+ - time-series-forecasting
18
+ task_ids:
19
+ - binary-classification
20
+ license: mit
21
  ---
22
 
23
+ # KRX Investment Warning Prediction Dataset (OHLCV + Korean News)
24
+
25
+ ## Dataset Summary
26
+
27
+ This dataset is a test dataset for predicting **Investment Warning (투자주의 / 주의 종목)** designations in the Korean stock market (KRX).
28
+ It contains **raw daily OHLCV** price data and **Korean news text** (title + body), designed for **multimodal anomaly detection / binary classification**.
29
+
30
+ **Important:** No technical indicators are included, and no normalization/scaling is applied.
31
+
32
+ - **Date range:** 2025-07-01 ~ 2025-09-30
33
+ - **Prediction horizon:** whether a stock will be designated as an investment warning **within the next 1 trading day**
34
+
35
+ ## Task
36
+
37
+ Binary classification:
38
+
39
+ - **Label 0:** Normal trading (no investment warning designation within the next 1 trading day)
40
+ - **Label 1:** Investment warning designation (within the next 1 trading day)
41
+
42
+ ### Label Alignment
43
+
44
+ For each `(ticker, date=t)`, set `label=1` if the stock is designated as an investment warning on `t+1` (the next trading day).
45
+
46
+ ## Data Sources
47
+
48
+ | Source | Description |
49
+ |------|-------------|
50
+ | **Stock Prices** | Daily OHLCV data for KRX listed stocks |
51
+ | **Investment Warning** | KRX investment warning designation history (labels) |
52
+ | **News** | Korean news articles per stock (title + body) |
53
+
54
+ ## Dataset Format
55
+
56
+ This dataset is structured to be used directly with Hugging Face `datasets`, and consists of **three columns**:
57
+
58
+ - **`labels`**: Binary label (`0` or `1`)
59
+ - **`time_series`**: Price time-series information (OHLCV)
60
+ - **`texts`**: Korean news text mapped to the corresponding stock (title + body)
61
+
62
+ > The exact internal structure of `time_series` and `texts` (e.g., list/dict formats, sequence length, date ordering) follows the dataset schema.
63
+ > In general, `time_series` is provided as a fixed-length historical window, and `texts` contains news from the same date (or window period), either concatenated or stored as a list.
64
+
65
+ ### Example (Conceptual)
66
 
67
+ - `labels`: `0` or `1`
68
+ - `time_series`: `[{date, open, high, low, close, volume}, ...]` or `[[open, high, low, close, volume], ...]`
69
+ - `texts`: `"title ... body ..."` or `["article1 ...", "article2 ..."]`
70
 
71
+ ## Feature Details
 
72
 
73
+ ### Price (OHLCV) — `time_series`
74
 
75
+ - OHLCV is provided as **raw daily bars**.
76
+ - **No technical indicators** (e.g., RSI, MACD) are included.
77
+ - **No normalization/scaling** is applied.
78
+ - **Currency unit:** KRW
79
+ - **Volume:** number of shares (not value)
 
80
 
81
+ ### News — `texts`
82
 
83
+ - News is mapped to tickers via an **exact ticker-code mapping**.
84
+ - **Deduplication** has been applied.
85
+ - Each news item includes **title + body** (stored as a single string or list depending on schema).
86
 
87
+ ## Recommended Metrics
88
 
89
+ Because investment warning events are likely to be rare (class imbalance), the following metrics are recommended:
 
90
 
91
+ - ROC-AUC, PR-AUC
92
+ - F1 (positive class), precision/recall
93
+ - Precision/recall at Top-k (useful for practical detection scenarios)
94
+ - (Optional) probability calibration