CoolFace
Datasetpublic

Tumiqa103/vn-bctn-supplement

Vietnam Annual Reports Supplement Dataset (546 PDFs) Tập dữ liệu bổ sung gồm 546 Báo cáo thường niên (BCTN) của các công ty niêm yết trên thị trường chứng khoán Việt Nam (HOSE, HNX, UPCoM), được trích xuất và chuẩn hóa để bổ sung cho tập dữ liệu gốc 13,982 báo cáo trên Zenodo. Cấu trúc lưu trữ . ├── README.md ├── bctn_supplement_index.parquet # Metadata index (546 rows) ├── manifest.csv # Chi tiết danh mục file └── pdfs/ ├── {TICKER}/… See the full description on the dataset page: https://huggingface.co/datasets/Tumiqa103/vn-bctn-supplement.

sourceHugging Facemitupdated 8d agoView on Hugging Face
0likes411downloads
Dataset Card

Vietnam Annual Reports Supplement Dataset (546 PDFs)

Tập dữ liệu bổ sung gồm 546 Báo cáo thường niên (BCTN) của các công ty niêm yết trên thị trường chứng khoán Việt Nam (HOSE, HNX, UPCoM), được trích xuất và chuẩn hóa để bổ sung cho tập dữ liệu gốc 13,982 báo cáo trên Zenodo.

Cấu trúc lưu trữ

.
├── README.md
├── bctn_supplement_index.parquet   # Metadata index (546 rows)
├── manifest.csv                    # Chi tiết danh mục file
└── pdfs/
    ├── {TICKER}/
    │   └── {TICKER}_{YEAR}_BCTN.pdf
  • —Tổng số file: 546 PDFs
  • —Dung lượng: ~5.01 GB
  • —Định dạng file: {TICKER}_{YEAR}_BCTN.pdf
  • —Tích hợp: Dùng trực tiếp với hệ thống vn-annual-report-miner.

Sử dụng trong Python

python
from huggingface_hub import hf_hub_download

# Tải 1 báo cáo mẫu:
pdf_path = hf_hub_download(
    repo_id="Tumiqa103/vn-bctn-supplement",
    filename="pdfs/MED/MED_2020_BCTN.pdf",
    repo_type="dataset"
)
print("Downloaded to:", pdf_path)