Datasets:
File size: 1,537 Bytes
e098301 490d46c 58fa6ca e098301 490d46c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | ---
license: mit
task_categories:
- time-series-forecasting
- text-classification
language:
- ko
size_categories:
- 10K<n<100K
dataset_info:
features:
- name: labels
dtype: int64
- name: time_series
list:
list: float64
- name: texts
dtype: string
splits:
- name: train
num_bytes: 22975241
num_examples: 10605
download_size: 14726776
dataset_size: 22975241
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# TIPS Multimodal Test Dataset
## Dataset Description
This dataset contains test data for multimodal stock prediction using time series and text data.
### Dataset Structure
- **labels**: Binary labels for stock price prediction (0: down/neutral, 1: up)
- **time_series**: Time series features for stock data
- **texts**: Korean news text data related to stocks
### Data Splits
This is the test split of the TIPS multimodal dataset.
### Usage
```python
from datasets import load_dataset
dataset = load_dataset("k-datasoft/Multimodal-test-dataset-technicalindicators")
```
### Data Fields
- `labels`: int - Binary classification label
- `time_series`: array - Time series features
- `texts`: string - Korean news text
### Citation
If you use this dataset, please cite:
```
@dataset{tips_multimodal_test,
title={TIPS Multimodal Test Dataset},
author={Your Name},
year={2025},
publisher={Hugging Face},
url={https://huggingface.co/datasets/k-datasoft/Multimodal-test-dataset-technicalindicators}
}
```
### License
MIT License
|