TheBloke commited on
Commit
61bc5ba
1 Parent(s): 724e228

Initial GGML model commit

Browse files
Files changed (1) hide show
  1. README.md +100 -0
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ inference: false
3
+ model_type: replit
4
+ ---
5
+
6
+ <!-- header start -->
7
+ <div style="width: 100%;">
8
+ <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;">
9
+ </div>
10
+ <div style="display: flex; justify-content: space-between; width: 100%;">
11
+ <div style="display: flex; flex-direction: column; align-items: flex-start;">
12
+ <p><a href="https://discord.gg/theblokeai">Chat & support: my new Discord server</a></p>
13
+ </div>
14
+ <div style="display: flex; flex-direction: column; align-items: flex-end;">
15
+ <p><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p>
16
+ </div>
17
+ </div>
18
+ <!-- header end -->
19
+
20
+ # Sahil2801's Replit Code Instruct Glaive GGML
21
+
22
+ These files are Replit GGML format model files for [Sahil2801's Replit Code Instruct Glaive](https://huggingface.co/sahil2801/replit-code-instruct-glaive).
23
+
24
+ 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.
25
+
26
+ These files were quantised using hardware kindly provided by [Latitude.sh](https://www.latitude.sh/accelerate).
27
+
28
+ ## Repositories available
29
+
30
+ * [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/Replit-Code-Instruct-Glaive-GGML)
31
+ * [Unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/sahil2801/replit-code-instruct-glaive)
32
+
33
+ ## Prompt template: Unknown
34
+
35
+ ```
36
+ {prompt}
37
+ ```
38
+
39
+ <!-- compatibility_ggml start -->
40
+ ## Compatibilty
41
+
42
+ These files are **not** compatible with llama.cpp, text-generation-webui or llama-cpp-python.
43
+
44
+ They can be used with:
45
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a powerful inference engine based on llama.cpp with full GPU acceleration and good UI.
46
+ * [LM Studio](https://lmstudio.ai/), a fully featured local GUI for GGML inference on Windows and macOS.
47
+ * [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.
48
+ * [ctransformers](https://github.com/marella/ctransformers): for use in Python code, including LangChain support.
49
+ * [rustformers' llm](https://github.com/rustformers/llm)
50
+ * The example `replit` binary provided with [ggml](https://github.com/ggerganov/ggml)
51
+
52
+ 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!)
53
+
54
+ ## Tutorial for using LoLLMs-WebUI:
55
+
56
+ * [Video tutorial, by LoLLMs-WebUI's author **ParisNeo**](https://youtu.be/vBU1b5n0GMU)
57
+ <!-- compatibility_ggml end -->
58
+
59
+ ## Provided files
60
+ | Name | Quant method | Bits | Size | Max RAM required | Use case |
61
+ | ---- | ---- | ---- | ---- | ---- | ----- |
62
+ | replit-code-instruct-glaive.ggmlv1.q4_0.bin | q4_0 | 4 | 1.46 GB| 3.96 GB | 4-bit. |
63
+ | replit-code-instruct-glaive.ggmlv1.q4_1.bin | q4_1 | 4 | 1.63 GB| 4.13 GB | 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
64
+ | replit-code-instruct-glaive.ggmlv1.q5_0.bin | q5_0 | 5 | 1.79 GB| 4.29 GB | 5-bit. Higher accuracy, higher resource usage and slower inference. |
65
+ | replit-code-instruct-glaive.ggmlv1.q5_1.bin | q5_1 | 5 | 1.95 GB| 4.45 GB | 5-bit. Even higher accuracy, resource usage and slower inference. |
66
+ | replit-code-instruct-glaive.ggmlv1.q8_0.bin | q8_0 | 8 | 2.76 GB| 5.26 GB | 8-bit. Almost indistinguishable from float16. High resource use and slow. Not recommended for most users. |
67
+
68
+ **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.
69
+
70
+ <!-- footer start -->
71
+ ## Discord
72
+
73
+ For further support, and discussions on these models and AI in general, join us at:
74
+
75
+ [TheBloke AI's Discord server](https://discord.gg/theblokeai)
76
+
77
+ ## Thanks, and how to contribute.
78
+
79
+ Thanks to the [chirper.ai](https://chirper.ai) team!
80
+
81
+ 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.
82
+
83
+ 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.
84
+
85
+ Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits.
86
+
87
+ * Patreon: https://patreon.com/TheBlokeAI
88
+ * Ko-Fi: https://ko-fi.com/TheBlokeAI
89
+
90
+ **Special thanks to**: Luke from CarbonQuill, Aemon Algiz.
91
+
92
+ **Patreon special mentions**: Space Cruiser, Nikolai Manek, Sam, Chris McCloskey, Rishabh Srivastava, Kalila, Spiking Neurons AB, Khalefa Al-Ahmad, WelcomeToTheClub, Chadd, Lone Striker, Viktor Bowallius, Edmond Seymore, Ai Maven, Chris Smitley, Dave, Alexandros Triantafyllidis, Luke @flexchar, Elle, ya boyyy, Talal Aujan, Alex , Jonathan Leane, Deep Realms, Randy H, subjectnull, Preetika Verma, Joseph William Delisle, Michael Levine, chris gileta, K, Oscar Rangel, LangChain4j, Trenton Dambrowitz, Eugene Pentland, Johann-Peter Hartmann, Femi Adebogun, Illia Dulskyi, senxiiz, Daniel P. Andersen, Sean Connelly, Artur Olbinski, RoA, Mano Prime, Derek Yates, Raven Klaugh, David Flickinger, Willem Michiel, Pieter, Willian Hasse, vamX, Luke Pendergrass, webtim, Ghost , Rainer Wilmers, Nathan LeClaire, Will Dee, Cory Kujawski, John Detwiler, Fred von Graf, biorpg, Iucharbius , Imad Khwaja, Pierre Kircher, terasurfer , Asp the Wyvern, John Villwock, theTransient, zynix , Gabriel Tamborski, Fen Risland, Gabriel Puliatti, Matthew Berman, Pyrater, SuperWojo, Stephen Murray, Karl Bernard, Ajan Kanaga, Greatston Gnanesh, Junyu Yang.
93
+
94
+ Thank you to all my generous patrons and donaters!
95
+
96
+ <!-- footer end -->
97
+
98
+ # Original model card: Sahil2801's Replit Code Instruct Glaive
99
+
100
+ No original model card was provided.