sagorsarker commited on
Commit
aae08a5
1 Parent(s): 8f0f5fa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -12
README.md CHANGED
@@ -17,7 +17,7 @@ base_model:
17
 
18
  ## Model Information
19
 
20
- This model is a continually pretrained version of the [meta-llama/Llama-3.2-3B](https://huggingface.co/meta-llama/Llama-3.2-3B) architecture, fine-tuned on extensive Bangla datasets. The primary goal of the continual pretraining was to enhance the model's ability to generate high-quality Bangla text. By extending the pretraining process specifically on Bangla data, the model has demonstrated superior performance in tasks related to Bangla language understanding evaluation benchmarks and text generation.
21
 
22
  **Model Architecture:** Llama 3.2 is an auto-regressive language model that uses an optimized transformer architecture.
23
 
@@ -31,9 +31,9 @@ This model is a continually pretrained version of the [meta-llama/Llama-3.2-3B](
31
 
32
  **Model Release Date:** October 24, 2024
33
 
34
- **Status:** This is a static model trained on an offline dataset. Future versions may be released that improve model capabilities.
35
 
36
- **License:** We are using the similar license of Llama 3.2. Use of Llama 3.2 is governed by the [Llama 3.2 Community License](https://github.com/meta-llama/llama-models/blob/main/models/llama3_2/LICENSE) (a custom, commercial license agreement).
37
 
38
 
39
  ## How to use
@@ -69,26 +69,26 @@ pipe("আমাদের দেশের নাম")
69
  **Overview:** We have collected a large Bangla raw dataset of text data from a wide variety of sources. Our collected data so far includes a mix of web documents, books, translated text, transliterated text, transcribe text, code-mixed text, conversations, and open sources raw data. The dataset is cleaned and filtered by different filtering criteria to ensure the quality of the data. Our collected data size roughly around 268 GB. Total trained tokens are 37B tokens.
70
 
71
  Data sources summary:
72
- - Web documents: Extract, clean, filter common crawl data
73
- - Books: Extract, clean, filter books data
74
  - Transcribed text: Used in-house Bangla ASR model to transcribe Bangla audio data
75
  - Translation data: We trained a Bangla-English translation LLM model and used it to translate English data to Bangla
76
  - Code-mixed data: We trained a Bangla-English code-mixed LLM model and used it to generate code-mixed data
77
  - Transliteration data: We trained a Bangla-English transliteration LLM model and used it to generate transliterated data
78
  - Synthetic data: We generated synthetic data using a Bangla LLM model
79
- - Others: We scrap some selected websites data, used open-sources data, and used some other data sources
80
 
81
 
82
- ## Benchmarks \- Bangla Text
83
 
84
  In this section, we report the results for __titulm-llama-3.2-3b-v1.1__ models on standard automatic benchmarks. For all these evaluations, we used [lm-evaluation-harness](https://github.com/EleutherAI/lm-evaluation-harness) evaluations library.
85
 
86
  ### Evaluation Datasets
87
- We evaluated our pretrained models on both Bangla and English benchmark datasets. Although the model is trained on Bangla data, it's English capability is also evaluated on English benchmark datasets. The evaluation datasets are as follows:
88
 
89
  #### Bangla Benchmark datasets
90
  We evaluated the models on the following datasets:
91
- - [Bangla MMLU](): A privated multiple choice questions datasets developed by Hishab curated from various sources.
92
  - [CommonsenseQa Bangla](https://huggingface.co/datasets/hishab/commonsenseqa-bn): A Bangla translation of the CommonsenseQA dataset. The dataset was translated using a new method called Expressive Semantic Translation (EST), which combines Google Machine Translation with LLM-based rewriting modifications.
93
  - [OpenbookQA Bangla](https://huggingface.co/datasets/hishab/openbookqa-bn): A Bangla translation of the OpenbookQA dataset. The dataset was translated using a new method called Expressive Semantic Translation (EST), which combines Google Machine Translation with LLM-based rewriting modifications.
94
  - [Piqa Bangla](https://huggingface.co/datasets/hishab/piqa-bn): A Bangla translation of the Piqa dataset. The dataset was translated using a new method called Expressive Semantic Translation (EST), which combines Google Machine Translation with LLM-based rewriting modifications.
@@ -96,14 +96,17 @@ We evaluated the models on the following datasets:
96
 
97
  #### English Benchmark datasets
98
  - [MMLU](https://huggingface.co/datasets/cais/mmlu): This is a massive multitask test consisting of multiple-choice questions from various branches of knowledge.
99
- - [CommonseQa](https://huggingface.co/datasets/tau/commonsense_qa): CommonsenseQA is a new multiple-choice question answering dataset that requires different types of commonsense knowledge to predict the correct answers .
100
  - [OpenbookQA](https://huggingface.co/datasets/allenai/openbookqa): OpenBookQA aims to promote research in advanced question-answering, probing a deeper understanding of both the topic (with salient facts summarized as an open book, also provided with the dataset) and the language it is expressed in.
101
  - [Piqa](https://huggingface.co/datasets/ybisk/piqa): The PIQA dataset focuses on physical commonsense reasoning, challenging AI to handle everyday situations requiring practical knowledge and unconventional solutions. Inspired by instructables.com, it aims to enhance AI's ability to understand and reason about physical interactions.
102
  - [BoolQ](https://huggingface.co/datasets/google/boolq): BoolQ is a question answering dataset for yes/no questions containing 15942 examples. These questions are naturally occurring ---they are generated in unprompted and unconstrained settings. Each example is a triplet of (question, passage, answer), with the title of the page as optional additional context. The text-pair classification setup is similar to existing natural language inference tasks.
103
 
104
  ### Evaluation Results
105
 
106
- #### Evaluation on Bangla Benchmark datasets
 
 
 
107
  | Model | Shots | Bangla MMLU | BoolQ BN | Commonsense QA BN | OpenBook QA BN | PIQA BN |
108
  |--------------------------------------|--------|-------------|----------|-------------------|----------------|---------|
109
  | llama-3.2-3b | 0-shot | **0.36** | 0.55 | 0.26 | 0.31 | 0.56 |
@@ -111,7 +114,16 @@ We evaluated the models on the following datasets:
111
  | hishab/titulm-llama-3.2-3b-v1.1 | 0-shot | 0.35 | **0.66** | **0.31** | **0.37** | **0.62**|
112
  | | 5-shot | **0.40** | - | **0.40** | **0.37** | **0.63**|
113
 
114
- #### Evaluation on English Benchmark datasets
 
 
 
 
 
 
 
 
 
115
 
116
  ### Instruction Tuned Models
117
 
 
17
 
18
  ## Model Information
19
 
20
+ This model is a continually pre-trained version of the [meta-llama/Llama-3.2-3B](https://huggingface.co/meta-llama/Llama-3.2-3B) architecture, fine-tuned on extensive Bangla datasets. The primary goal of the continual pretraining was to enhance the model's ability to generate high-quality Bangla text. By extending the pretraining process specifically on Bangla data, the model has demonstrated superior performance in tasks related to Bangla language understanding evaluation benchmarks and text generation.
21
 
22
  **Model Architecture:** Llama 3.2 is an auto-regressive language model that uses an optimized transformer architecture.
23
 
 
31
 
32
  **Model Release Date:** October 24, 2024
33
 
34
+ **Status:** This is a static model trained on an offline dataset. Future versions may be released to improve model capabilities.
35
 
36
+ **License:** We are using a similar license of Llama 3.2. Use of Llama 3.2 is governed by the [Llama 3.2 Community License](https://github.com/meta-llama/llama-models/blob/main/models/llama3_2/LICENSE) (a custom, commercial license agreement).
37
 
38
 
39
  ## How to use
 
69
  **Overview:** We have collected a large Bangla raw dataset of text data from a wide variety of sources. Our collected data so far includes a mix of web documents, books, translated text, transliterated text, transcribe text, code-mixed text, conversations, and open sources raw data. The dataset is cleaned and filtered by different filtering criteria to ensure the quality of the data. Our collected data size roughly around 268 GB. Total trained tokens are 37B tokens.
70
 
71
  Data sources summary:
72
+ - Web documents: Extract, clean, and filter common crawl data
73
+ - Books: Extract, clean, and filter book data
74
  - Transcribed text: Used in-house Bangla ASR model to transcribe Bangla audio data
75
  - Translation data: We trained a Bangla-English translation LLM model and used it to translate English data to Bangla
76
  - Code-mixed data: We trained a Bangla-English code-mixed LLM model and used it to generate code-mixed data
77
  - Transliteration data: We trained a Bangla-English transliteration LLM model and used it to generate transliterated data
78
  - Synthetic data: We generated synthetic data using a Bangla LLM model
79
+ - Others: We scrap some selected website data, used open-source data, and used some other data sources
80
 
81
 
82
+ ## Benchmarks
83
 
84
  In this section, we report the results for __titulm-llama-3.2-3b-v1.1__ models on standard automatic benchmarks. For all these evaluations, we used [lm-evaluation-harness](https://github.com/EleutherAI/lm-evaluation-harness) evaluations library.
85
 
86
  ### Evaluation Datasets
87
+ We evaluated our pre-trained models on both Bangla and English benchmark datasets. Although the model is trained on Bangla data, its English capability is also evaluated on English benchmark datasets. The evaluation datasets are as follows:
88
 
89
  #### Bangla Benchmark datasets
90
  We evaluated the models on the following datasets:
91
+ - [Bangla MMLU](): A private multiple choice question dataset developed by Hishab curated from various sources.
92
  - [CommonsenseQa Bangla](https://huggingface.co/datasets/hishab/commonsenseqa-bn): A Bangla translation of the CommonsenseQA dataset. The dataset was translated using a new method called Expressive Semantic Translation (EST), which combines Google Machine Translation with LLM-based rewriting modifications.
93
  - [OpenbookQA Bangla](https://huggingface.co/datasets/hishab/openbookqa-bn): A Bangla translation of the OpenbookQA dataset. The dataset was translated using a new method called Expressive Semantic Translation (EST), which combines Google Machine Translation with LLM-based rewriting modifications.
94
  - [Piqa Bangla](https://huggingface.co/datasets/hishab/piqa-bn): A Bangla translation of the Piqa dataset. The dataset was translated using a new method called Expressive Semantic Translation (EST), which combines Google Machine Translation with LLM-based rewriting modifications.
 
96
 
97
  #### English Benchmark datasets
98
  - [MMLU](https://huggingface.co/datasets/cais/mmlu): This is a massive multitask test consisting of multiple-choice questions from various branches of knowledge.
99
+ - [CommonseQa](https://huggingface.co/datasets/tau/commonsense_qa): CommonsenseQA is a new multiple-choice question-answering dataset that requires different types of commonsense knowledge to predict the correct answers .
100
  - [OpenbookQA](https://huggingface.co/datasets/allenai/openbookqa): OpenBookQA aims to promote research in advanced question-answering, probing a deeper understanding of both the topic (with salient facts summarized as an open book, also provided with the dataset) and the language it is expressed in.
101
  - [Piqa](https://huggingface.co/datasets/ybisk/piqa): The PIQA dataset focuses on physical commonsense reasoning, challenging AI to handle everyday situations requiring practical knowledge and unconventional solutions. Inspired by instructables.com, it aims to enhance AI's ability to understand and reason about physical interactions.
102
  - [BoolQ](https://huggingface.co/datasets/google/boolq): BoolQ is a question answering dataset for yes/no questions containing 15942 examples. These questions are naturally occurring ---they are generated in unprompted and unconstrained settings. Each example is a triplet of (question, passage, answer), with the title of the page as optional additional context. The text-pair classification setup is similar to existing natural language inference tasks.
103
 
104
  ### Evaluation Results
105
 
106
+ #### Evaluation of Bangla Benchmark datasets
107
+ - **llama-3.2-3b** performs best on **Bangla MMLU** with a 0-shot score of **0.36** and 5-shot score of **0.38**.
108
+ - **hishab/titulm-llama-3.2-3b-v1.1** outperforms in most tasks, leading in **BoolQ BN**, **Commonsense QA BN**, **OpenBook QA BN**, and **PIQA BN** in both 0-shot and 5-shot settings, with the highest 5-shot scores.
109
+
110
  | Model | Shots | Bangla MMLU | BoolQ BN | Commonsense QA BN | OpenBook QA BN | PIQA BN |
111
  |--------------------------------------|--------|-------------|----------|-------------------|----------------|---------|
112
  | llama-3.2-3b | 0-shot | **0.36** | 0.55 | 0.26 | 0.31 | 0.56 |
 
114
  | hishab/titulm-llama-3.2-3b-v1.1 | 0-shot | 0.35 | **0.66** | **0.31** | **0.37** | **0.62**|
115
  | | 5-shot | **0.40** | - | **0.40** | **0.37** | **0.63**|
116
 
117
+ #### Evaluation of English Benchmark datasets
118
+ - **llama-3.2-3b** dominates across all tasks, achieving the highest scores in **MMLU**, **BoolQ**, **Commonsense QA**, **OpenBook QA**, and **PIQA**, with improvements in the 5-shot setting.
119
+ - **titulm-llama-3.2-3b-v1.1** shows competitive performance but generally trails behind **llama-3.2-3b**, especially in the 0-shot setting across English benchmarks.
120
+
121
+ | Model | Shots | MMLU | BoolQ | Commonsense QA | OpenBook QA | PIQA |
122
+ |--------------------------------------|--------|--------------|------------|--------------------|-----------------|-----------|
123
+ | llama-3.2-3b | 0-shot | **0.541** | **0.729** | **0.643** | **0.430** | **0.774** |
124
+ | | 5-shot | **0.563** | **0.735** | **0.666** | **0.454** | **0.796** |
125
+ | titulm-llama-3.2-3b-v1.1 | 0-shot | 0.43 | 0.65 | 0.56 | 0.39 | 0.77 |
126
+ | | 5-shot | 0.51 | 0.72 | 0.61 | 0.43 | 0.78 |
127
 
128
  ### Instruction Tuned Models
129