morriszms commited on
Commit
0a5c5ad
1 Parent(s): e06a641

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,15 @@ 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
+ llama3-small-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
37
+ llama3-small-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
38
+ llama3-small-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
39
+ llama3-small-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
40
+ llama3-small-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
41
+ llama3-small-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
42
+ llama3-small-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
43
+ llama3-small-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
44
+ llama3-small-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
45
+ llama3-small-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
46
+ llama3-small-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
47
+ llama3-small-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ tags:
4
+ - TensorBlock
5
+ - GGUF
6
+ base_model: jdchang/llama3-small
7
+ ---
8
+
9
+ <div style="width: auto; margin-left: auto; margin-right: auto">
10
+ <img src="https://i.imgur.com/jC7kdl8.jpeg" alt="TensorBlock" style="width: 100%; min-width: 400px; display: block; margin: auto;">
11
+ </div>
12
+ <div style="display: flex; justify-content: space-between; width: 100%;">
13
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
14
+ <p style="margin-top: 0.5em; margin-bottom: 0em;">
15
+ Feedback and support: TensorBlock's <a href="https://x.com/tensorblock_aoi">Twitter/X</a>, <a href="https://t.me/TensorBlock">Telegram Group</a> and <a href="https://x.com/tensorblock_aoi">Discord server</a>
16
+ </p>
17
+ </div>
18
+ </div>
19
+
20
+ ## jdchang/llama3-small - GGUF
21
+
22
+ This repo contains GGUF format model files for [jdchang/llama3-small](https://huggingface.co/jdchang/llama3-small).
23
+
24
+ The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b4011](https://github.com/ggerganov/llama.cpp/commit/a6744e43e80f4be6398fc7733a01642c846dce1d).
25
+
26
+ ## Prompt template
27
+
28
+ ```
29
+ <|begin_of_text|><|start_header_id|>system<|end_header_id|>
30
+
31
+ {system_prompt}<|eot_id|><|start_header_id|>user<|end_header_id|>
32
+
33
+ {prompt}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
34
+ ```
35
+
36
+ ## Model file specification
37
+
38
+ | Filename | Quant type | File Size | Description |
39
+ | -------- | ---------- | --------- | ----------- |
40
+ | [llama3-small-Q2_K.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q2_K.gguf) | Q2_K | 0.093 GB | smallest, significant quality loss - not recommended for most purposes |
41
+ | [llama3-small-Q3_K_S.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q3_K_S.gguf) | Q3_K_S | 0.102 GB | very small, high quality loss |
42
+ | [llama3-small-Q3_K_M.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q3_K_M.gguf) | Q3_K_M | 0.104 GB | very small, high quality loss |
43
+ | [llama3-small-Q3_K_L.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q3_K_L.gguf) | Q3_K_L | 0.106 GB | small, substantial quality loss |
44
+ | [llama3-small-Q4_0.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q4_0.gguf) | Q4_0 | 0.116 GB | legacy; small, very high quality loss - prefer using Q3_K_M |
45
+ | [llama3-small-Q4_K_S.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q4_K_S.gguf) | Q4_K_S | 0.116 GB | small, greater quality loss |
46
+ | [llama3-small-Q4_K_M.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q4_K_M.gguf) | Q4_K_M | 0.117 GB | medium, balanced quality - recommended |
47
+ | [llama3-small-Q5_0.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q5_0.gguf) | Q5_0 | 0.129 GB | legacy; medium, balanced quality - prefer using Q4_K_M |
48
+ | [llama3-small-Q5_K_S.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q5_K_S.gguf) | Q5_K_S | 0.129 GB | large, low quality loss - recommended |
49
+ | [llama3-small-Q5_K_M.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q5_K_M.gguf) | Q5_K_M | 0.129 GB | large, very low quality loss - recommended |
50
+ | [llama3-small-Q6_K.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q6_K.gguf) | Q6_K | 0.142 GB | very large, extremely low quality loss |
51
+ | [llama3-small-Q8_0.gguf](https://huggingface.co/tensorblock/llama3-small-GGUF/tree/main/llama3-small-Q8_0.gguf) | Q8_0 | 0.182 GB | very large, extremely low quality loss - not recommended |
52
+
53
+
54
+ ## Downloading instruction
55
+
56
+ ### Command line
57
+
58
+ Firstly, install Huggingface Client
59
+
60
+ ```shell
61
+ pip install -U "huggingface_hub[cli]"
62
+ ```
63
+
64
+ Then, downoad the individual model file the a local directory
65
+
66
+ ```shell
67
+ huggingface-cli download tensorblock/llama3-small-GGUF --include "llama3-small-Q2_K.gguf" --local-dir MY_LOCAL_DIR
68
+ ```
69
+
70
+ If you wanna download multiple model files with a pattern (e.g., `*Q4_K*gguf`), you can try:
71
+
72
+ ```shell
73
+ huggingface-cli download tensorblock/llama3-small-GGUF --local-dir MY_LOCAL_DIR --local-dir-use-symlinks False --include='*Q4_K*gguf'
74
+ ```
llama3-small-Q2_K.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c303cbdb8bf88a4bc30fb6d240e1195a174782518919041f2a5e7e8bfad5aaf
3
+ size 99700544
llama3-small-Q3_K_L.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90a0bafa53331418523abe5e20c96b04906a7b82494ad7d28cf5539f899550e9
3
+ size 113354560
llama3-small-Q3_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e4f4856fb84bafb895f1eb08e6c03e4be613ead2d942f91561aeac742a619aa
3
+ size 111454016
llama3-small-Q3_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfa9f30d3636803f6ff863aee524b6229ef099a15a15e2ee060c0eb7f8251050
3
+ size 109400896
llama3-small-Q4_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91546074e0fcd9b11b0de052a2081a21c8578b7d3843c409e5d0d99e67c90595
3
+ size 124145472
llama3-small-Q4_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a20f6ae2ebe48bb8384443803bff82a5b19465f0b4ed1f19ca59d8dd2b5d504
3
+ size 126054720
llama3-small-Q4_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8402193196412645b1cac8f8707f3d6ce5910be3137966124d627e32af2a0d3d
3
+ size 124161856
llama3-small-Q5_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:583fb41a5b7175d59a9637a8f52dc6390dccd64d0446eb5d431f726e8f0eb454
3
+ size 138022720
llama3-small-Q5_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2be2787bf47b7883b980e032990fd522f9cbd2db46ddc81089ba0a5a731e58e1
3
+ size 139006272
llama3-small-Q5_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d78b0db690ad24c01ac1cf2ecd3216e8aa58a31412a4912c940e5064e72bb410
3
+ size 138022720
llama3-small-Q6_K.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de48728fcaa97dfd95655623f55c42c1c6a8cc8a56805999491b002a5e561a81
3
+ size 152767296
llama3-small-Q8_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8df2cfd16933815e33e3b3be431556427700b4cdd4d560da8f5beb5694fdb7f
3
+ size 195558208