amezasor commited on
Commit
8e1eb16
1 Parent(s): 52dcc90

draft base models v2

Browse files
Files changed (1) hide show
  1. README.md +13 -12
README.md CHANGED
@@ -9,20 +9,20 @@ tags:
9
  # Granite-3.1-8B-Base
10
 
11
  **Model Summary:**
12
- Granite-3.1-8B-Base is a decoder-only language model to support a variety of text-to-text generation tasks. It is trained from scratch following a two-stage training strategy. In the first stage, it is trained on 10 trillion tokens sourced from diverse domains. During the second stage, it is further trained on 2 trillion tokens using a carefully curated mix of high-quality data, aiming to enhance its performance on specific tasks.
13
 
14
  - **Developers:** Granite Team, IBM
15
- - **GitHub Repository:** [ibm-granite/granite-3.1-language-models]()
16
  - **Website**: [Granite Docs](https://www.ibm.com/granite/docs/)
17
- - **Paper:** [Granite 3.1 Language Models]()
18
  - **Release Date**: December 18th, 2024
19
  - **License:** [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
20
 
21
  **Supported Languages:**
22
  English, German, Spanish, French, Japanese, Portuguese, Arabic, Czech, Italian, Korean, Dutch, and Chinese. Users may finetune Granite 3.1 models for languages beyond these 12 languages.
23
 
24
- **Intended use:**
25
- Prominent use cases of LLMs in text-to-text generation include summarization, text classification, extraction, question-answering, and more. All Granite Base models are able to handle these tasks as they were trained on a large amount of data from various domains. Moreover, they can serve as baseline to create specialized models for specific application scenarios.
26
 
27
  **Generation:**
28
  This is a simple example of how to use Granite-3.1-8B-Base model.
@@ -69,24 +69,25 @@ Granite-3.1-8B-Base is based on a decoder-only dense transformer architecture. C
69
  | Number of KV heads | 8 | **8** | 8 | 8 |
70
  | MLP hidden size | 8192 | **12800** | 512 | 512 |
71
  | MLP activation | SwiGLU | **SwiGLU** | SwiGLU | SwiGLU |
72
- | Number of Experts | — | **—** | 32 | 40 |
73
  | MoE TopK | — | **—** | 8 | 8 |
74
  | Initialization std | 0.1 | **0.1** | 0.1 | 0.1 |
75
- | Sequence Length | 4096 | **4096** | 4096 | 4096 |
76
- | Position Embedding | RoPE | **RoPE** | RoPE | RoPE |
77
  | # Parameters | 2.5B | **8.1B** | 1.3B | 3.3B |
78
- | # Active Parameters | 2.5B | **8.1B** | 400M | 800M |
79
  | # Training tokens | 12T | **12T** | 10T | 10T |
80
 
81
  **Training Data:**
82
- This model is trained on a mix of open source and proprietary data following a two-stage training strategy.
83
  * Stage 1 data: The data for stage 1 is sourced from diverse domains, such as: web, code, academic sources, books, and math data.
84
  * Stage 2 data: The data for stage 2 comprises a curated mix of high-quality data from the same domains, plus multilingual and instruction data. The goal of this second training phase is to enhance the model’s performance on specific tasks.
 
85
 
86
- A detailed attribution of datasets can be found in the [Granite Technical Report]() and [Accompanying Author List]().
87
 
88
  **Infrastructure:**
89
- We train Granite 3.1 Language Models using IBM's super computing cluster, Blue Vela, which is outfitted with NVIDIA H100 GPUs. This cluster provides a scalable and efficient infrastructure for training our models over thousands of GPUs while minimizing environmental impact by utilizing 100% renewable energy sources.
90
 
91
  **Ethical Considerations and Limitations:**
92
  The use of Large Language Models involves risks and ethical considerations people must be aware of, including but not limited to: bias and fairness, misinformation, and autonomous decision-making. Granite-3.1-8B-Base model is not the exception in this regard. Even though this model is suited for multiple generative AI tasks, it has not undergone any safety alignment, there it may produce problematic outputs. Additionally, it remains uncertain whether smaller models might exhibit increased susceptibility to hallucination in generation scenarios by copying text verbatim from the training dataset due to their reduced sizes and memorization capacities. This aspect is currently an active area of research, and we anticipate more rigorous exploration, comprehension, and mitigations in this domain. Regarding ethics, a latent risk associated with all Large Language Models is their malicious utilization. We urge the community to use Granite-3.1-8B-Base model with ethical intentions and in a responsible way.
 
9
  # Granite-3.1-8B-Base
10
 
11
  **Model Summary:**
12
+ Granite-3.1-8B-Base extends the context length of Granite-3.0-8B-Base from 4K to 128K using a progressive training strategy by increasing the supported context length in increments while adjusting RoPE theta until the model has successfully adapted to desired length of 128K. We trained on approximately xxB tokens total for all stages, which is only 0.xx% of total pre-training data.
13
 
14
  - **Developers:** Granite Team, IBM
15
+ - **GitHub Repository:** [ibm-granite/granite-3.1-language-models](https://github.com/ibm-granite/granite-3.1-language-models)
16
  - **Website**: [Granite Docs](https://www.ibm.com/granite/docs/)
17
+ - **Paper:** [Granite 3.1 Language Models (coming soon)](https://huggingface.co/collections/ibm-granite/granite-31-language-models-6751dbbf2f3389bec5c6f02d)
18
  - **Release Date**: December 18th, 2024
19
  - **License:** [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
20
 
21
  **Supported Languages:**
22
  English, German, Spanish, French, Japanese, Portuguese, Arabic, Czech, Italian, Korean, Dutch, and Chinese. Users may finetune Granite 3.1 models for languages beyond these 12 languages.
23
 
24
+ **Intended Use:**
25
+ Prominent use cases of LLMs in text-to-text generation include summarization, text classification, extraction, question-answering, and other long-context tasks. All Granite Base models are able to handle these tasks as they were trained on a large amount of data from various domains. Moreover, they can serve as baseline to create specialized models for specific application scenarios.
26
 
27
  **Generation:**
28
  This is a simple example of how to use Granite-3.1-8B-Base model.
 
69
  | Number of KV heads | 8 | **8** | 8 | 8 |
70
  | MLP hidden size | 8192 | **12800** | 512 | 512 |
71
  | MLP activation | SwiGLU | **SwiGLU** | SwiGLU | SwiGLU |
72
+ | Number of experts | — | **—** | 32 | 40 |
73
  | MoE TopK | — | **—** | 8 | 8 |
74
  | Initialization std | 0.1 | **0.1** | 0.1 | 0.1 |
75
+ | Sequence length | 128K | **128K** | 128K | 128K |
76
+ | Position embedding | RoPE | **RoPE** | RoPE | RoPE |
77
  | # Parameters | 2.5B | **8.1B** | 1.3B | 3.3B |
78
+ | # Active parameters | 2.5B | **8.1B** | 400M | 800M |
79
  | # Training tokens | 12T | **12T** | 10T | 10T |
80
 
81
  **Training Data:**
82
+ This model is trained on a mix of open source and proprietary data following a three-stage training strategy.
83
  * Stage 1 data: The data for stage 1 is sourced from diverse domains, such as: web, code, academic sources, books, and math data.
84
  * Stage 2 data: The data for stage 2 comprises a curated mix of high-quality data from the same domains, plus multilingual and instruction data. The goal of this second training phase is to enhance the model’s performance on specific tasks.
85
+ * Stage 3 data:
86
 
87
+ A detailed attribution of datasets can be found in the [Granite 3.0 Technical Report](https://github.com/ibm-granite/granite-3.0-language-models/blob/main/paper.pdf), [Granite 3.1 Technical Report (coming soon)](https://huggingface.co/collections/ibm-granite/granite-31-language-models-6751dbbf2f3389bec5c6f02d) and [Accompanying Author List](). # Link to 3.0, link to comming soon
88
 
89
  **Infrastructure:**
90
+ We train Granite 3.1 Language Models using IBM's super computing cluster, Blue Vela, which is outfitted with NVIDIA H100 GPUs. This cluster provides a scalable and efficient infrastructure for training our models over thousands of GPUs.
91
 
92
  **Ethical Considerations and Limitations:**
93
  The use of Large Language Models involves risks and ethical considerations people must be aware of, including but not limited to: bias and fairness, misinformation, and autonomous decision-making. Granite-3.1-8B-Base model is not the exception in this regard. Even though this model is suited for multiple generative AI tasks, it has not undergone any safety alignment, there it may produce problematic outputs. Additionally, it remains uncertain whether smaller models might exhibit increased susceptibility to hallucination in generation scenarios by copying text verbatim from the training dataset due to their reduced sizes and memorization capacities. This aspect is currently an active area of research, and we anticipate more rigorous exploration, comprehension, and mitigations in this domain. Regarding ethics, a latent risk associated with all Large Language Models is their malicious utilization. We urge the community to use Granite-3.1-8B-Base model with ethical intentions and in a responsible way.