Improve dataset card: Add task category, license, and tags
Browse filesThis PR improves the dataset card by adding crucial metadata to enhance its discoverability and provide more context:
- Adds `task_categories: visual-document-retrieval` to accurately classify the dataset's primary task.
- Specifies `license: cc-by-nc-4.0`.
- Includes `library_name: transformers`, as the dataset is intended for use with models often built and used with the Hugging Face Transformers library.
- Adds relevant `tags`: `multimodal`, `embeddings`, `pretraining`, `document-retrieval`, and `interleaved-data` to better describe the dataset's nature and application.
The existing `dataset_info` and `configs` metadata have been preserved. No changes were made to the existing paper, code, or project links in the markdown content.
README.md
CHANGED
@@ -16,7 +16,19 @@ configs:
|
|
16 |
data_files:
|
17 |
- split: train
|
18 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
---
|
|
|
20 |
# Copali train split used in MoCa Continual Pre-training
|
21 |
|
22 |
[π Homepage](https://haon-chen.github.io/MoCa/) | [π» Code](https://github.com/haon-chen/MoCa) | [π€ MoCa-Qwen25VL-7B](https://huggingface.co/moca-embed/MoCa-Qwen25VL-7B) | [π€ MoCa-Qwen25VL-3B](https://huggingface.co/moca-embed/MoCa-Qwen25VL-3B) | [π Datasets](https://huggingface.co/moca-embed/datasets) | [π Paper](https://arxiv.org/abs/2506.23115)
|
|
|
16 |
data_files:
|
17 |
- split: train
|
18 |
path: data/train-*
|
19 |
+
task_categories:
|
20 |
+
- visual-document-retrieval
|
21 |
+
license: cc-by-nc-4.0
|
22 |
+
library_name:
|
23 |
+
- transformers
|
24 |
+
tags:
|
25 |
+
- multimodal
|
26 |
+
- embeddings
|
27 |
+
- pretraining
|
28 |
+
- document-retrieval
|
29 |
+
- interleaved-data
|
30 |
---
|
31 |
+
|
32 |
# Copali train split used in MoCa Continual Pre-training
|
33 |
|
34 |
[π Homepage](https://haon-chen.github.io/MoCa/) | [π» Code](https://github.com/haon-chen/MoCa) | [π€ MoCa-Qwen25VL-7B](https://huggingface.co/moca-embed/MoCa-Qwen25VL-7B) | [π€ MoCa-Qwen25VL-3B](https://huggingface.co/moca-embed/MoCa-Qwen25VL-3B) | [π Datasets](https://huggingface.co/moca-embed/datasets) | [π Paper](https://arxiv.org/abs/2506.23115)
|