k-datasoft commited on
Commit
490d46c
·
verified ·
1 Parent(s): e098301

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +56 -20
README.md CHANGED
@@ -1,22 +1,58 @@
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: 157812274
14
- num_examples: 70494
15
- download_size: 121681036
16
- dataset_size: 157812274
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
+ - 10K<n<100K
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
+
12
+ # TIPS Multimodal Test Dataset
13
+
14
+ ## Dataset Description
15
+
16
+ This dataset contains test data for multimodal stock prediction using time series and text data.
17
+
18
+ ### Dataset Structure
19
+
20
+ - **labels**: Binary labels for stock price prediction (0: down/neutral, 1: up)
21
+ - **time_series**: Time series features for stock data
22
+ - **texts**: Korean news text data related to stocks
23
+
24
+ ### Data Splits
25
+
26
+ This is the test split of the TIPS multimodal dataset.
27
+
28
+ ### Usage
29
+
30
+ ```python
31
+ from datasets import load_dataset
32
+
33
+ dataset = load_dataset("k-datasoft/Multimodal-test-dataset-technicalindicators")
34
+ ```
35
+
36
+ ### Data Fields
37
+
38
+ - `labels`: int - Binary classification label
39
+ - `time_series`: array - Time series features
40
+ - `texts`: string - Korean news text
41
+
42
+ ### Citation
43
+
44
+ If you use this dataset, please cite:
45
+
46
+ ```
47
+ @dataset{tips_multimodal_test,
48
+ title={TIPS Multimodal Test Dataset},
49
+ author={Your Name},
50
+ year={2025},
51
+ publisher={Hugging Face},
52
+ url={https://huggingface.co/datasets/k-datasoft/Multimodal-test-dataset-technicalindicators}
53
+ }
54
+ ```
55
+
56
+ ### License
57
+
58
+ MIT License