Upload 2 files
Browse files- .gitattributes +1 -0
- README.md +53 -3
- cogito-v1-preview-llama-3b-q4_k_m.gguf +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
cogito-v1-preview-llama-3b-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,3 +1,53 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: deepcogito/cogito-v1-preview-llama-3B
|
3 |
+
library_name: transformers
|
4 |
+
license: llama3.2
|
5 |
+
pipeline_tag: text-generation
|
6 |
+
tags:
|
7 |
+
- llama-cpp
|
8 |
+
- gguf-my-repo
|
9 |
+
---
|
10 |
+
|
11 |
+
# C10X/cogito-v1-preview-llama-3B-Q4_K_M-GGUF
|
12 |
+
This model was converted to GGUF format from [`deepcogito/cogito-v1-preview-llama-3B`](https://huggingface.co/deepcogito/cogito-v1-preview-llama-3B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
13 |
+
Refer to the [original model card](https://huggingface.co/deepcogito/cogito-v1-preview-llama-3B) for more details on the model.
|
14 |
+
|
15 |
+
## Use with llama.cpp
|
16 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
17 |
+
|
18 |
+
```bash
|
19 |
+
brew install llama.cpp
|
20 |
+
|
21 |
+
```
|
22 |
+
Invoke the llama.cpp server or the CLI.
|
23 |
+
|
24 |
+
### CLI:
|
25 |
+
```bash
|
26 |
+
llama-cli --hf-repo C10X/cogito-v1-preview-llama-3B-Q4_K_M-GGUF --hf-file cogito-v1-preview-llama-3b-q4_k_m.gguf -p "The meaning to life and the universe is"
|
27 |
+
```
|
28 |
+
|
29 |
+
### Server:
|
30 |
+
```bash
|
31 |
+
llama-server --hf-repo C10X/cogito-v1-preview-llama-3B-Q4_K_M-GGUF --hf-file cogito-v1-preview-llama-3b-q4_k_m.gguf -c 2048
|
32 |
+
```
|
33 |
+
|
34 |
+
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
35 |
+
|
36 |
+
Step 1: Clone llama.cpp from GitHub.
|
37 |
+
```
|
38 |
+
git clone https://github.com/ggerganov/llama.cpp
|
39 |
+
```
|
40 |
+
|
41 |
+
Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
|
42 |
+
```
|
43 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
44 |
+
```
|
45 |
+
|
46 |
+
Step 3: Run inference through the main binary.
|
47 |
+
```
|
48 |
+
./llama-cli --hf-repo C10X/cogito-v1-preview-llama-3B-Q4_K_M-GGUF --hf-file cogito-v1-preview-llama-3b-q4_k_m.gguf -p "The meaning to life and the universe is"
|
49 |
+
```
|
50 |
+
or
|
51 |
+
```
|
52 |
+
./llama-server --hf-repo C10X/cogito-v1-preview-llama-3B-Q4_K_M-GGUF --hf-file cogito-v1-preview-llama-3b-q4_k_m.gguf -c 2048
|
53 |
+
```
|
cogito-v1-preview-llama-3b-q4_k_m.gguf
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:499f46226ad5c59758e160c8b0b4cc7b81938edf039b8c5580b040cbb30d844c
|
3 |
+
size 2241004448
|