BallisticAI commited on
Commit
77cc4af
1 Parent(s): 653b981

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +120 -0
README.md CHANGED
@@ -1,3 +1,123 @@
1
  ---
2
  license: llama2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: llama2
3
+ tags:
4
+ - code llama
5
+ base_model: BallisticAI/Ballistic-CodeLlama-34B-v1
6
+ inference: false
7
+ model_creator: BallisticAI
8
+ model_type: llama
9
+ prompt_template: '### System Prompt
10
+
11
+ {system_message}
12
+
13
+
14
+ ### User Message
15
+
16
+ {prompt}
17
+
18
+
19
+ ### Assistant
20
+
21
+ '
22
+ quantized_by: BallisticAI
23
+ model-index:
24
+ - name: Ballistic-CodeLlama-34B-v1
25
+ results:
26
+ - task:
27
+ type: text-generation
28
+ dataset:
29
+ name: HumanEval
30
+ type: openai_humaneval
31
+ metrics:
32
+ - type: n/a
33
+ value: n/a
34
+ name: n/a
35
+ verified: false
36
  ---
37
+
38
+
39
+ # CodeLlama 34B v1 - GGUF
40
+ - Model creator: [BallisticAI](https://huggingface.co/BallisticAI)
41
+ - Base model: [CodeLlama 34B hf](https://huggingface.co/codellama/CodeLlama-34b-hf)
42
+ - Merged with: [CodeLlama 34B v2](https://huggingface.co/Phind/Phind-CodeLlama-34B-v2) && [speechless-codellama-34b-v2](https://huggingface.co/uukuguy/speechless-codellama-34b-v2.0)
43
+ - Additional training with: [jondurbin/airoboros-2.2](https://huggingface.co/datasets/jondurbin/airoboros-2.2)
44
+
45
+
46
+ <!-- description start -->
47
+ ## Description
48
+
49
+ This repo contains GGUF format model files for [Ballistic-CodeLlama-34B-v1](https://huggingface.co/BallisticAI/Ballistic-CodeLlama-34B-v1).
50
+
51
+ <!-- description end -->
52
+ <!-- README_GGUF.md-about-gguf start -->
53
+ ### About GGUF
54
+
55
+ GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp. GGUF offers numerous advantages over GGML, such as better tokenisation, and support for special tokens. It is also supports metadata, and is designed to be extensible.
56
+
57
+ Here is an incomplate list of clients and libraries that are known to support GGUF:
58
+
59
+ * [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option.
60
+ * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions. Supports GPU acceleration.
61
+ * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with GPU accel across all platforms and GPU architectures. Especially good for story telling.
62
+ * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration.
63
+ * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection.
64
+ * [Faraday.dev](https://faraday.dev/), an attractive and easy to use character-based chat GUI for Windows and macOS (both Silicon and Intel), with GPU acceleration.
65
+ * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
66
+ * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
67
+ * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
68
+
69
+ <!-- README_GGUF.md-about-gguf end -->
70
+ <!-- repositories-available start -->
71
+ ## Repositories available
72
+
73
+ * [AWQ model(s) for GPU inference.](https://huggingface.co/BallisticAI/Ballistic-CodeLlama-34B-v1-AWQ)
74
+ * [Unquantised fp16 model in pytorch format, for GPU inference and for further conversions](BallisticAI/Ballistic-CodeLlama-34B-v1)
75
+ <!-- repositories-available end -->
76
+
77
+ <!-- prompt-template start -->
78
+ ## How to Prompt the Model
79
+ This model accepts the Alpaca/Vicuna instruction format.
80
+
81
+ For example:
82
+
83
+ ```
84
+ ### System Prompt
85
+ You are an intelligent programming assistant.
86
+
87
+ ### User Message
88
+ Implement a linked list in C++
89
+
90
+ ### Assistant
91
+ ...
92
+ ```
93
+
94
+ <!-- prompt-template end -->
95
+
96
+
97
+ <!-- compatibility_gguf start -->
98
+ ## Compatibility
99
+
100
+ These quantised GGUFv2 files are compatible with llama.cpp from August 27th onwards, as of commit [d0cee0d36d5be95a0d9088b674dbb27354107221](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221)
101
+
102
+ They are also compatible with many third party UIs and libraries - please see the list at the top of this README.
103
+ <!-- compatibility_gguf end -->
104
+
105
+
106
+ ## Bias, Risks, and Limitations
107
+
108
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
109
+ This model has undergone very limited testing. Additional safety testing should be performed before any real-world deployments.
110
+
111
+
112
+
113
+ ## Thanks
114
+
115
+ Thanks to:
116
+
117
+ - The Original Llama team
118
+ - [Phind](https://huggingface.co/phind)
119
+ - [uukuguy](https://huggingface.co/uukuguy)
120
+ - [jondurbin](https://huggingface.co/jondurbin)
121
+ - And everyone else who's involved in the Open Source AI/ML Community.
122
+
123
+