prithivMLmods commited on
Commit
164775e
1 Parent(s): 1b23be3

Update README.md

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