prithivMLmods commited on
Commit
9270247
1 Parent(s): 69f8338

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +123 -3
README.md CHANGED
@@ -1,3 +1,123 @@
1
- ---
2
- license: creativeml-openrail-m
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ language:
4
+ - en
5
+ base_model:
6
+ - Qwen/Qwen2.5-Coder-7B-Instruct
7
+ pipeline_tag: text-generation
8
+ library_name: transformers
9
+ tags:
10
+ - Qwen2.5
11
+ - Coder
12
+ - 7B
13
+ - Instruct
14
+ - F16
15
+ - 16-Bit
16
+ - Q4
17
+ - Q5
18
+ - Q8
19
+ ---
20
+
21
+ ## Qwen2.5-Coder-7B-Instruct-GGUF
22
+
23
+ | File Name | Size | Description |
24
+ |--------------------------------------------|---------|-------------------------------------------------------------------|
25
+ | `.gitattributes` | 1.81kB | Git configuration file for handling file attributes and LFS rules. |
26
+ | `Qwen2.5-Coder-7B-Instruct.F16.gguf` | 15.2GB | Full-precision (16-bit) instruction-tuned model for coding tasks. |
27
+ | `Qwen2.5-Coder-7B-Instruct.Q4_K_M.gguf` | 4.68GB | Quantized 4-bit medium variant model for reduced resource usage. |
28
+ | `Qwen2.5-Coder-7B-Instruct.Q5_K_M.gguf` | 5.44GB | Quantized 5-bit medium variant model for a balance of size and accuracy. |
29
+ | `Qwen2.5-Coder-7B-Instruct.Q8_0.gguf` | 8.1GB | Quantized 8-bit model for higher accuracy coding instruction tasks. |
30
+ | `README.md` | - | Basic README file with project and model information. |
31
+
32
+
33
+ # Run with Ollama 🦙
34
+
35
+ ## Overview
36
+
37
+ 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.
38
+
39
+ ## Table of Contents
40
+
41
+ - [Download and Install Ollama](#download-and-install-ollama)
42
+ - [Steps to Run GGUF Models](#steps-to-run-gguf-models)
43
+ - [1. Create the Model File](#1-create-the-model-file)
44
+ - [2. Add the Template Command](#2-add-the-template-command)
45
+ - [3. Create and Patch the Model](#3-create-and-patch-the-model)
46
+ - [Running the Model](#running-the-model)
47
+ - [Sample Usage](#sample-usage)
48
+
49
+ ## Download and Install Ollama🦙
50
+
51
+ To get started, download Ollama from [https://ollama.com/download](https://ollama.com/download) and install it on your Windows or Mac system.
52
+
53
+ ## Steps to Run GGUF Models
54
+
55
+ ### 1. Create the Model File
56
+ First, create a model file and name it appropriately. For example, you can name your model file `metallama`.
57
+
58
+ ### 2. Add the Template Command
59
+ In your model file, include a `FROM` line that specifies the base model file you want to use. For instance:
60
+
61
+ ```bash
62
+ FROM Llama-3.2-1B.F16.gguf
63
+ ```
64
+
65
+ Ensure that the model file is in the same directory as your script.
66
+
67
+ ### 3. Create and Patch the Model
68
+ Open your terminal and run the following command to create and patch your model:
69
+
70
+ ```bash
71
+ ollama create metallama -f ./metallama
72
+ ```
73
+
74
+ Once the process is successful, you will see a confirmation message.
75
+
76
+ To verify that the model was created successfully, you can list all models with:
77
+
78
+ ```bash
79
+ ollama list
80
+ ```
81
+
82
+ Make sure that `metallama` appears in the list of models.
83
+
84
+ ---
85
+
86
+ ## Running the Model
87
+
88
+ To run your newly created model, use the following command in your terminal:
89
+
90
+ ```bash
91
+ ollama run metallama
92
+ ```
93
+
94
+ ### Sample Usage
95
+
96
+ In the command prompt, you can execute:
97
+
98
+ ```bash
99
+ D:\>ollama run metallama
100
+ ```
101
+
102
+ You can interact with the model like this:
103
+
104
+ ```plaintext
105
+ >>> write a mini passage about space x
106
+ Space X, the private aerospace company founded by Elon Musk, is revolutionizing the field of space exploration.
107
+ With its ambitious goals to make humanity a multi-planetary species and establish a sustainable human presence in
108
+ the cosmos, Space X has become a leading player in the industry. The company's spacecraft, like the Falcon 9, have
109
+ demonstrated remarkable capabilities, allowing for the transport of crews and cargo into space with unprecedented
110
+ efficiency. As technology continues to advance, the possibility of establishing permanent colonies on Mars becomes
111
+ increasingly feasible, thanks in part to the success of reusable rockets that can launch multiple times without
112
+ sustaining significant damage. The journey towards becoming a multi-planetary species is underway, and Space X
113
+ plays a pivotal role in pushing the boundaries of human exploration and settlement.
114
+ ```
115
+
116
+ ---
117
+
118
+ ## Conclusion
119
+
120
+ 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.
121
+
122
+
123
+ - 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.