meliksahturker
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,47 +1,63 @@
|
|
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 |
-
More information
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
-
|
45 |
-
-
|
46 |
-
-
|
47 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- tr
|
4 |
+
arXiv: 2403.01308
|
5 |
+
library_name: transformers
|
6 |
+
pipeline_tag: text2text-generation
|
7 |
+
license: cc-by-nc-sa-4.0
|
8 |
+
inference: false
|
9 |
+
datasets:
|
10 |
+
- vngrs-ai/vngrs-web-corpus
|
11 |
---
|
12 |
+
# VBART Model Card
|
13 |
+
|
14 |
+
## Model Description
|
15 |
+
|
16 |
+
VBART is the first sequence-to-sequence LLM pre-trained on Turkish corpora from scratch on a large scale. It was pre-trained by VNGRS in February 2023.
|
17 |
+
The model is capable of conditional text generation tasks such as text summarization, paraphrasing, and title generation when fine-tuned.
|
18 |
+
It outperforms its multilingual counterparts, albeit being much smaller than other implementations.
|
19 |
+
|
20 |
+
This repository contains pre-trained TensorFlow and Safetensors weights of VBART-Small-Base.
|
21 |
+
|
22 |
+
- **Developed by:** [VNGRS-AI](https://vngrs.com/ai/)
|
23 |
+
- **Model type:** Transformer encoder-decoder based on mBART architecture
|
24 |
+
- **Language(s) (NLP):** Turkish
|
25 |
+
- **License:** CC BY-NC-SA 4.0
|
26 |
+
- **Finetuned from:** VBART-Large
|
27 |
+
- **Paper:** [arXiv](https://arxiv.org/abs/2403.01308)
|
28 |
+
|
29 |
+
## Training Details
|
30 |
+
|
31 |
+
### Training Data
|
32 |
+
The base model is pre-trained on [vngrs-web-corpus](https://huggingface.co/datasets/vngrs-ai/vngrs-web-corpus). It is curated by cleaning and filtering Turkish parts of [OSCAR-2201](https://huggingface.co/datasets/oscar-corpus/OSCAR-2201) and [mC4](https://huggingface.co/datasets/mc4) datasets. These datasets consist of documents of unstructured web crawl data. More information about the dataset can be found on their respective pages. Data is filtered using a set of heuristics and certain rules, explained in the appendix of our [paper](https://arxiv.org/abs/2403.01308).
|
33 |
+
|
34 |
+
### Limitations
|
35 |
+
This model is the pre-trained base model and is capable of masked language modeling.
|
36 |
+
Its purpose is to serve as the base model to be fine-tuned for downstream tasks.
|
37 |
+
|
38 |
+
### Training Procedure
|
39 |
+
Pre-trained for a total of 52B tokens.
|
40 |
+
#### Hardware
|
41 |
+
- **GPUs**: 8 x Nvidia A100-80 GB
|
42 |
+
#### Software
|
43 |
+
- TensorFlow
|
44 |
+
#### Hyperparameters
|
45 |
+
##### Pretraining
|
46 |
+
- **Training regime:** fp16 mixed precision
|
47 |
+
- **Training objective**: Span masking (using mask lengths sampled from Poisson distribution 位=3.5, masking 30% of tokens)
|
48 |
+
- **Optimizer** : Adam optimizer (尾1 = 0.9, 尾2 = 0.98, 茞 = 1e-6)
|
49 |
+
- **Scheduler**: Custom scheduler from the original Transformers paper (20,000 warm-up steps)
|
50 |
+
- **Dropout**: 0.1
|
51 |
+
- **Initial Learning rate**: 5e-6
|
52 |
+
- **Training tokens**: 52B
|
53 |
+
|
54 |
+
|
55 |
+
## Citation
|
56 |
+
```
|
57 |
+
@article{turker2024vbart,
|
58 |
+
title={VBART: The Turkish LLM},
|
59 |
+
author={Turker, Meliksah and Ari, Erdi and Han, Aydin},
|
60 |
+
journal={arXiv preprint arXiv:2403.01308},
|
61 |
+
year={2024}
|
62 |
+
}
|
63 |
+
```
|