lbourdois commited on
Commit
c969ce2
·
verified ·
1 Parent(s): f9b3d8c

Improve language tag

Browse files

Hi! As the model is multilingual, this is a PR to add other languages than English to the language tag to improve the referencing. Note that 29 languages are announced in the README, but only 13 are explicitly listed. I was therefore only able to add these 13 languages.

Files changed (1) hide show
  1. README.md +131 -119
README.md CHANGED
@@ -1,120 +1,132 @@
1
- ---
2
- license: creativeml-openrail-m
3
- datasets:
4
- - HuggingFaceH4/ultrachat_200k
5
- language:
6
- - en
7
- base_model:
8
- - Qwen/Qwen2.5-0.5B
9
- tags:
10
- - Qwen2.5
11
- - 200K
12
- - 5B
13
- - Llama-cpp
14
- pipeline_tag: text-generation
15
- ---
16
-
17
- ## Qwen2.5-0.5B-200K-GGUF
18
-
19
- | File Name | Size | Description |
20
- |------------------------------------|----------|-----------------------------------------------------------------------------------------------------|
21
- | `.gitattributes` | 1.78kB | Git configuration file specifying attributes and LFS rules. |
22
- | `Modelfile` | 1.73kB | Model-specific file containing metadata or configurations. |
23
- | `Qwen2.5-0.5B-200K.F16.gguf` | 994MB | Full precision 16-bit float model file for Qwen 2.5 with 0.5B parameters and 200K steps. |
24
- | `Qwen2.5-0.5B-200K.Q4_K_M.gguf` | 398MB | Quantized 4-bit model file for Qwen 2.5 with 0.5B parameters and 200K steps, optimized for memory. |
25
- | `Qwen2.5-0.5B-200K.Q5_K_M.gguf` | 420MB | Quantized 5-bit model file for Qwen 2.5 with 0.5B parameters and 200K steps, balanced for accuracy. |
26
- | `Qwen2.5-0.5B-200K.Q8_0.gguf` | 531MB | Quantized 8-bit model file for Qwen 2.5 with 0.5B parameters and 200K steps, moderate accuracy. |
27
- | `README.md` | 166B | Markdown file with project information and instructions. |
28
- | `config.json` | - | JSON configuration file for setting model parameters. |
29
-
30
- # Run with Ollama 🦙
31
-
32
- ## Overview
33
-
34
- Ollama is a powerful tool that allows you to run machine learning models effortlessly. This guide will help you download, install, and run your own GGUF models in just a few minutes.
35
-
36
- ## Table of Contents
37
-
38
- - [Download and Install Ollama](#download-and-install-ollama)
39
- - [Steps to Run GGUF Models](#steps-to-run-gguf-models)
40
- - [1. Create the Model File](#1-create-the-model-file)
41
- - [2. Add the Template Command](#2-add-the-template-command)
42
- - [3. Create and Patch the Model](#3-create-and-patch-the-model)
43
- - [Running the Model](#running-the-model)
44
- - [Sample Usage](#sample-usage)
45
-
46
- ## Download and Install Ollama🦙
47
-
48
- To get started, download Ollama from [https://ollama.com/download](https://ollama.com/download) and install it on your Windows or Mac system.
49
-
50
- ## Steps to Run GGUF Models
51
-
52
- ### 1. Create the Model File
53
- First, create a model file and name it appropriately. For example, you can name your model file `metallama`.
54
-
55
- ### 2. Add the Template Command
56
- In your model file, include a `FROM` line that specifies the base model file you want to use. For instance:
57
-
58
- ```bash
59
- FROM Llama-3.2-1B.F16.gguf
60
- ```
61
-
62
- Ensure that the model file is in the same directory as your script.
63
-
64
- ### 3. Create and Patch the Model
65
- Open your terminal and run the following command to create and patch your model:
66
-
67
- ```bash
68
- ollama create metallama -f ./metallama
69
- ```
70
-
71
- Once the process is successful, you will see a confirmation message.
72
-
73
- To verify that the model was created successfully, you can list all models with:
74
-
75
- ```bash
76
- ollama list
77
- ```
78
-
79
- Make sure that `metallama` appears in the list of models.
80
-
81
- ---
82
-
83
- ## Running the Model
84
-
85
- To run your newly created model, use the following command in your terminal:
86
-
87
- ```bash
88
- ollama run metallama
89
- ```
90
-
91
- ### Sample Usage
92
-
93
- In the command prompt, you can execute:
94
-
95
- ```bash
96
- D:\>ollama run metallama
97
- ```
98
-
99
- You can interact with the model like this:
100
-
101
- ```plaintext
102
- >>> write a mini passage about space x
103
- Space X, the private aerospace company founded by Elon Musk, is revolutionizing the field of space exploration.
104
- With its ambitious goals to make humanity a multi-planetary species and establish a sustainable human presence in
105
- the cosmos, Space X has become a leading player in the industry. The company's spacecraft, like the Falcon 9, have
106
- demonstrated remarkable capabilities, allowing for the transport of crews and cargo into space with unprecedented
107
- efficiency. As technology continues to advance, the possibility of establishing permanent colonies on Mars becomes
108
- increasingly feasible, thanks in part to the success of reusable rockets that can launch multiple times without
109
- sustaining significant damage. The journey towards becoming a multi-planetary species is underway, and Space X
110
- plays a pivotal role in pushing the boundaries of human exploration and settlement.
111
- ```
112
-
113
- ---
114
-
115
- ## Conclusion
116
-
117
- With these simple steps, you can easily download, install, and run your own models using Ollama. Whether you're exploring the capabilities of Llama or building your own custom models, Ollama makes it accessible and efficient.
118
-
119
-
 
 
 
 
 
 
 
 
 
 
 
 
120
  - This README provides clear instructions and structured information to help users navigate the process of using Ollama effectively. Adjust any sections as needed based on your specific requirements or additional details you may want to include.
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ datasets:
4
+ - HuggingFaceH4/ultrachat_200k
5
+ language:
6
+ - zho
7
+ - eng
8
+ - fra
9
+ - spa
10
+ - por
11
+ - deu
12
+ - ita
13
+ - rus
14
+ - jpn
15
+ - kor
16
+ - vie
17
+ - tha
18
+ - ara
19
+ base_model:
20
+ - Qwen/Qwen2.5-0.5B
21
+ tags:
22
+ - Qwen2.5
23
+ - 200K
24
+ - 5B
25
+ - Llama-cpp
26
+ pipeline_tag: text-generation
27
+ ---
28
+
29
+ ## Qwen2.5-0.5B-200K-GGUF
30
+
31
+ | File Name | Size | Description |
32
+ |------------------------------------|----------|-----------------------------------------------------------------------------------------------------|
33
+ | `.gitattributes` | 1.78kB | Git configuration file specifying attributes and LFS rules. |
34
+ | `Modelfile` | 1.73kB | Model-specific file containing metadata or configurations. |
35
+ | `Qwen2.5-0.5B-200K.F16.gguf` | 994MB | Full precision 16-bit float model file for Qwen 2.5 with 0.5B parameters and 200K steps. |
36
+ | `Qwen2.5-0.5B-200K.Q4_K_M.gguf` | 398MB | Quantized 4-bit model file for Qwen 2.5 with 0.5B parameters and 200K steps, optimized for memory. |
37
+ | `Qwen2.5-0.5B-200K.Q5_K_M.gguf` | 420MB | Quantized 5-bit model file for Qwen 2.5 with 0.5B parameters and 200K steps, balanced for accuracy. |
38
+ | `Qwen2.5-0.5B-200K.Q8_0.gguf` | 531MB | Quantized 8-bit model file for Qwen 2.5 with 0.5B parameters and 200K steps, moderate accuracy. |
39
+ | `README.md` | 166B | Markdown file with project information and instructions. |
40
+ | `config.json` | - | JSON configuration file for setting model parameters. |
41
+
42
+ # Run with Ollama 🦙
43
+
44
+ ## Overview
45
+
46
+ Ollama is a powerful tool that allows you to run machine learning models effortlessly. This guide will help you download, install, and run your own GGUF models in just a few minutes.
47
+
48
+ ## Table of Contents
49
+
50
+ - [Download and Install Ollama](#download-and-install-ollama)
51
+ - [Steps to Run GGUF Models](#steps-to-run-gguf-models)
52
+ - [1. Create the Model File](#1-create-the-model-file)
53
+ - [2. Add the Template Command](#2-add-the-template-command)
54
+ - [3. Create and Patch the Model](#3-create-and-patch-the-model)
55
+ - [Running the Model](#running-the-model)
56
+ - [Sample Usage](#sample-usage)
57
+
58
+ ## Download and Install Ollama🦙
59
+
60
+ To get started, download Ollama from [https://ollama.com/download](https://ollama.com/download) and install it on your Windows or Mac system.
61
+
62
+ ## Steps to Run GGUF Models
63
+
64
+ ### 1. Create the Model File
65
+ First, create a model file and name it appropriately. For example, you can name your model file `metallama`.
66
+
67
+ ### 2. Add the Template Command
68
+ In your model file, include a `FROM` line that specifies the base model file you want to use. For instance:
69
+
70
+ ```bash
71
+ FROM Llama-3.2-1B.F16.gguf
72
+ ```
73
+
74
+ Ensure that the model file is in the same directory as your script.
75
+
76
+ ### 3. Create and Patch the Model
77
+ Open your terminal and run the following command to create and patch your model:
78
+
79
+ ```bash
80
+ ollama create metallama -f ./metallama
81
+ ```
82
+
83
+ Once the process is successful, you will see a confirmation message.
84
+
85
+ To verify that the model was created successfully, you can list all models with:
86
+
87
+ ```bash
88
+ ollama list
89
+ ```
90
+
91
+ Make sure that `metallama` appears in the list of models.
92
+
93
+ ---
94
+
95
+ ## Running the Model
96
+
97
+ To run your newly created model, use the following command in your terminal:
98
+
99
+ ```bash
100
+ ollama run metallama
101
+ ```
102
+
103
+ ### Sample Usage
104
+
105
+ In the command prompt, you can execute:
106
+
107
+ ```bash
108
+ D:\>ollama run metallama
109
+ ```
110
+
111
+ You can interact with the model like this:
112
+
113
+ ```plaintext
114
+ >>> write a mini passage about space x
115
+ Space X, the private aerospace company founded by Elon Musk, is revolutionizing the field of space exploration.
116
+ With its ambitious goals to make humanity a multi-planetary species and establish a sustainable human presence in
117
+ the cosmos, Space X has become a leading player in the industry. The company's spacecraft, like the Falcon 9, have
118
+ demonstrated remarkable capabilities, allowing for the transport of crews and cargo into space with unprecedented
119
+ efficiency. As technology continues to advance, the possibility of establishing permanent colonies on Mars becomes
120
+ increasingly feasible, thanks in part to the success of reusable rockets that can launch multiple times without
121
+ sustaining significant damage. The journey towards becoming a multi-planetary species is underway, and Space X
122
+ plays a pivotal role in pushing the boundaries of human exploration and settlement.
123
+ ```
124
+
125
+ ---
126
+
127
+ ## Conclusion
128
+
129
+ With these simple steps, you can easily download, install, and run your own models using Ollama. Whether you're exploring the capabilities of Llama or building your own custom models, Ollama makes it accessible and efficient.
130
+
131
+
132
  - This README provides clear instructions and structured information to help users navigate the process of using Ollama effectively. Adjust any sections as needed based on your specific requirements or additional details you may want to include.