TheBloke commited on
Commit
1d6a7f4
·
1 Parent(s): a60a876

Initial GGML model commit

Browse files
Files changed (1) hide show
  1. README.md +113 -0
README.md ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ inference: false
3
+ model_creator: StabilityAI
4
+ model_link: https://huggingface.co/stabilityai/stablecode-instruct-alpha-3b
5
+ model_name: Stablecode Instruct Alpha 3B
6
+ model_type: gpt-neox
7
+ quantized_by: TheBloke
8
+ ---
9
+
10
+ <!-- header start -->
11
+ <div style="width: 100%;">
12
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
13
+ </div>
14
+ <div style="display: flex; justify-content: space-between; width: 100%;">
15
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
16
+ <p><a href="https://discord.gg/theblokeai">Chat & support: my new Discord server</a></p>
17
+ </div>
18
+ <div style="display: flex; flex-direction: column; align-items: flex-end;">
19
+ <p><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
20
+ </div>
21
+ </div>
22
+ <!-- header end -->
23
+
24
+ # Stablecode Instruct Alpha 3B - GGML
25
+ - Model creator: [StabilityAI](https://huggingface.co/StabilityAI)
26
+ - Original model: [Stablecode Instruct Alpha 3B](https://huggingface.co/stabilityai/stablecode-instruct-alpha-3b)
27
+
28
+ ## Description
29
+
30
+ This repo contains GPT-NeoX GGML format model files for [StabilityAI's Stablecode Instruct Alpha 3B](https://huggingface.co/stabilityai/stablecode-instruct-alpha-3b).
31
+
32
+ Please note that these GGMLs are **not compatible with llama.cpp, text-generation-webui or llama-cpp-python**. Please see below for a list of tools that work with this GGML model.
33
+
34
+ ## Repositories available
35
+
36
+ * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/stablecode-instruct-alpha-3b-GPTQ)
37
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/stablecode-instruct-alpha-3b-GGML)
38
+ * [StabilityAI's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/stabilityai/stablecode-instruct-alpha-3b)
39
+
40
+ ## Prompt template: Alpaca
41
+
42
+ ```
43
+ Below is an instruction that describes a task. Write a response that appropriately completes the request.
44
+
45
+ ### Instruction:
46
+ {prompt}
47
+
48
+ ### Response:
49
+ ```
50
+
51
+ <!-- compatibility_ggml start -->
52
+ ## Compatibilty
53
+
54
+ These files are **not** compatible with llama.cpp, text-generation-webui or llama-cpp-python.
55
+
56
+ They can be used with:
57
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a powerful inference engine based on llama.cpp with full GPU acceleration and good UI.
58
+ * [LM Studio](https://lmstudio.ai/), a fully featured local GUI for GGML inference on Windows and macOS.
59
+ * [LoLLMs-WebUI](https://github.com/ParisNeo/LoLLMs-WebUI) a web UI which supports nearly every backend out there. Use ctransformers backend for support for this model.
60
+ * [ctransformers](https://github.com/marella/ctransformers): for use in Python code, including LangChain support.
61
+ * [rustformers' llm](https://github.com/rustformers/llm)
62
+ * The example `gpt-neox` binary provided with [ggml](https://github.com/ggerganov/ggml)
63
+
64
+ As other options become available I will endeavour to update them here (do let me know in the Community tab if I've missed something!)
65
+
66
+ ## Tutorial for using LoLLMs-WebUI:
67
+
68
+ * [Video tutorial, by LoLLMs-WebUI's author **ParisNeo**](https://youtu.be/vBU1b5n0GMU)
69
+ <!-- compatibility_ggml end -->
70
+
71
+ ## Provided files
72
+ | Name | Quant method | Bits | Size | Max RAM required | Use case |
73
+ | ---- | ---- | ---- | ---- | ---- | ----- |
74
+ | [stablecode-instruct-alpha-3b.ggmlv1.q4_0.bin](https://huggingface.co/TheBloke/stablecode-instruct-alpha-3b-GGML/blob/main/stablecode-instruct-alpha-3b.ggmlv1.q4_0.bin) | q4_0 | 4 | 1.56 GB| 4.06 GB | 4-bit. |
75
+ | [stablecode-instruct-alpha-3b.ggmlv1.q4_1.bin](https://huggingface.co/TheBloke/stablecode-instruct-alpha-3b-GGML/blob/main/stablecode-instruct-alpha-3b.ggmlv1.q4_1.bin) | q4_1 | 4 | 1.73 GB| 4.23 GB | 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
76
+ | [stablecode-instruct-alpha-3b.ggmlv1.q5_0.bin](https://huggingface.co/TheBloke/stablecode-instruct-alpha-3b-GGML/blob/main/stablecode-instruct-alpha-3b.ggmlv1.q5_0.bin) | q5_0 | 5 | 1.91 GB| 4.41 GB | 5-bit. Higher accuracy, higher resource usage and slower inference. |
77
+ | [stablecode-instruct-alpha-3b.ggmlv1.q5_1.bin](https://huggingface.co/TheBloke/stablecode-instruct-alpha-3b-GGML/blob/main/stablecode-instruct-alpha-3b.ggmlv1.q5_1.bin) | q5_1 | 5 | 2.08 GB| 4.58 GB | 5-bit. Even higher accuracy, resource usage and slower inference. |
78
+ | [stablecode-instruct-alpha-3b.ggmlv1.q8_0.bin](https://huggingface.co/TheBloke/stablecode-instruct-alpha-3b-GGML/blob/main/stablecode-instruct-alpha-3b.ggmlv1.q8_0.bin) | q8_0 | 8 | 2.95 GB| 5.45 GB | 8-bit. Almost indistinguishable from float16. High resource use and slow. Not recommended for most users. |
79
+
80
+ **Note**: the above RAM figures assume no GPU offloading. If layers are offloaded to the GPU, this will reduce RAM usage and use VRAM instead.
81
+
82
+ <!-- footer start -->
83
+ ## Discord
84
+
85
+ For further support, and discussions on these models and AI in general, join us at:
86
+
87
+ [TheBloke AI's Discord server](https://discord.gg/theblokeai)
88
+
89
+ ## Thanks, and how to contribute.
90
+
91
+ Thanks to the [chirper.ai](https://chirper.ai) team!
92
+
93
+ I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training.
94
+
95
+ If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects.
96
+
97
+ Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.
98
+
99
+ * Patreon: https://patreon.com/TheBlokeAI
100
+ * Ko-Fi: https://ko-fi.com/TheBlokeAI
101
+
102
+ **Special thanks to**: Luke from CarbonQuill, Aemon Algiz.
103
+
104
+ **Patreon special mentions**: Willem Michiel, Ajan Kanaga, Cory Kujawski, Alps Aficionado, Nikolai Manek, Jonathan Leane, Stanislav Ovsiannikov, Michael Levine, Luke Pendergrass, Sid, K, Gabriel Tamborski, Clay Pascal, Kalila, William Sang, Will Dee, Pieter, Nathan LeClaire, ya boyyy, David Flickinger, vamX, Derek Yates, Fen Risland, Jeffrey Morgan, webtim, Daniel P. Andersen, Chadd, Edmond Seymore, Pyrater, Olusegun Samson, Lone Striker, biorpg, alfie_i, Mano Prime, Chris Smitley, Dave, zynix, Trenton Dambrowitz, Johann-Peter Hartmann, Magnesian, Spencer Kim, John Detwiler, Iucharbius, Gabriel Puliatti, LangChain4j, Luke @flexchar, Vadim, Rishabh Srivastava, Preetika Verma, Ai Maven, Femi Adebogun, WelcomeToTheClub, Leonard Tan, Imad Khwaja, Steven Wood, Stefan Sabev, Sebastain Graf, usrbinkat, Dan Guido, Sam, Eugene Pentland, Mandus, transmissions 11, Slarti, Karl Bernard, Spiking Neurons AB, Artur Olbinski, Joseph William Delisle, ReadyPlayerEmma, Olakabola, Asp the Wyvern, Space Cruiser, Matthew Berman, Randy H, subjectnull, danny, John Villwock, Illia Dulskyi, Rainer Wilmers, theTransient, Pierre Kircher, Alexandros Triantafyllidis, Viktor Bowallius, terasurfer, Deep Realms, SuperWojo, senxiiz, Oscar Rangel, Alex, Stephen Murray, Talal Aujan, Raven Klaugh, Sean Connelly, Raymond Fosdick, Fred von Graf, chris gileta, Junyu Yang, Elle
105
+
106
+
107
+ Thank you to all my generous patrons and donaters!
108
+
109
+ <!-- footer end -->
110
+
111
+ # Original model card: StabilityAI's Stablecode Instruct Alpha 3B
112
+
113
+ No original model card was provided.