Datasets:
Tasks:
Object Detection
Modalities:
Text
Formats:
parquet
Languages:
Vietnamese
Size:
1K - 10K
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,50 @@
|
|
| 1 |
---
|
| 2 |
license: gpl-3.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: gpl-3.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- object-detection
|
| 5 |
+
language:
|
| 6 |
+
- vi
|
| 7 |
---
|
| 8 |
+
# 📄 Vietnamese Financial Reports – Table Detection Dataset
|
| 9 |
+
|
| 10 |
+
This dataset contains images and annotations of tables extracted from Vietnamese financial reports, focusing on the three most important financial statement types used in accounting and auditing.
|
| 11 |
+
Each table in the dataset is annotated with bounding boxes in YOLO OBB format, and stored in a Parquet file along with the base64-encoded image.
|
| 12 |
+
|
| 13 |
+
The dataset is optimized for use with the HuggingFace Datasets library.
|
| 14 |
+
|
| 15 |
+
# 🏷 Class Labels
|
| 16 |
+
|
| 17 |
+
| Class ID | Table Type | Vietnamese Name |
|
| 18 |
+
| -------- | -------------------- | -------------------------------------- |
|
| 19 |
+
| **0** | Balance Sheets | *Bảng cân đối kế toán* |
|
| 20 |
+
| **1** | Cash Flow Statements | *Báo cáo lưu chuyển tiền tệ* |
|
| 21 |
+
| **2** | Income Statements | *Báo cáo kết quả hoạt động kinh doanh* |
|
| 22 |
+
|
| 23 |
+
# 📦 Dataset Files
|
| 24 |
+
Each Parquet file contains a list of images and their corresponding annotations.
|
| 25 |
+
### Parquet Schema
|
| 26 |
+
| Column | Type | Description |
|
| 27 |
+
| -------------- | ---------- | ----------------------------------- |
|
| 28 |
+
| `image_path` | string | Relative path of the original image |
|
| 29 |
+
| `image_base64` | string | Base64-encoded image bytes |
|
| 30 |
+
| `objects` | list(dict) | List of annotated objects per image |
|
| 31 |
+
|
| 32 |
+
# 📄 License
|
| 33 |
+
GPL-3.0
|
| 34 |
+
|
| 35 |
+
# ✨ Citation
|
| 36 |
+
|
| 37 |
+
Please cite or reference this dataset if used in your work.
|
| 38 |
+
### BibTeX
|
| 39 |
+
```bibtex
|
| 40 |
+
@inproceedings{tran2025vifintab,
|
| 41 |
+
title={ViFinTab: A Domain-Specific Dataset and Baseline for Table Detection in Vietnamese Financial Statements},
|
| 42 |
+
author={Tran, Hong Tai and Mai, Xuan Toan and Nguyen, Nam-Quan and Tran, Tuan-Anh},
|
| 43 |
+
booktitle={International Conference on Multi-disciplinary Trends in Artificial Intelligence},
|
| 44 |
+
pages={387--398},
|
| 45 |
+
year={2025},
|
| 46 |
+
organization={Springer}
|
| 47 |
+
}
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
---
|