meliksahturker commited on
Commit
f9fcf35
verified
1 Parent(s): a4e3d65

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -45
README.md CHANGED
@@ -1,47 +1,63 @@
1
  ---
2
- tags:
3
- - generated_from_keras_callback
4
- model-index:
5
- - name: VBART-Small-Base
6
- results: []
 
 
 
 
7
  ---
8
-
9
- <!-- This model card has been generated automatically according to the information Keras had access to. You should
10
- probably proofread and complete it, then remove this comment. -->
11
-
12
- # VBART-Small-Base
13
-
14
- This model is a fine-tuned version of [](https://huggingface.co/) on an unknown dataset.
15
- It achieves the following results on the evaluation set:
16
-
17
-
18
- ## Model description
19
-
20
- More information needed
21
-
22
- ## Intended uses & limitations
23
-
24
- More information needed
25
-
26
- ## Training and evaluation data
27
-
28
- More information needed
29
-
30
- ## Training procedure
31
-
32
- ### Training hyperparameters
33
-
34
- The following hyperparameters were used during training:
35
- - optimizer: None
36
- - training_precision: float32
37
-
38
- ### Training results
39
-
40
-
41
-
42
- ### Framework versions
43
-
44
- - Transformers 4.39.0
45
- - TensorFlow 2.13.0
46
- - Datasets 2.18.0
47
- - Tokenizers 0.15.2
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ```