Spaces:
Running
Running
Commit
·
2bc3933
1
Parent(s):
e3e8566
add org card (#1)
Browse files- add org card (ac156fce938a4c2dfa04544e814f527737e5f250)
- Update README.md (fb5900c5d3dd2742553b0976ddcf9e208c712623)
Co-authored-by: Leandro von Werra <lvwerra@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -7,4 +7,32 @@ sdk: static
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
+
# 🦙 Code Llama
|
| 11 |
+
|
| 12 |
+
This organization is the home of the Code Llama models.
|
| 13 |
+
Code Llama is a code-specialized version of Llama 2 that was created by further training Llama 2 on its code-specific datasets, sampling more data from that same dataset for longer.
|
| 14 |
+
Essentially, Code Llama features enhanced coding capabilities.
|
| 15 |
+
It can generate code and natural language about code, from both code and natural language prompts (e.g., “Write me a function that outputs the fibonacci sequence”).
|
| 16 |
+
It can also be used for code completion and debugging.
|
| 17 |
+
It supports many of the most popular programming languages used today, including Python, C++, Java, PHP, Typescript (Javascript), C#, Bash and more.
|
| 18 |
+
|
| 19 |
+
There are three sizes (7b, 13b, 34b) as well as three flavours (base model, Python fine-tuned, and instruction tuned).
|
| 20 |
+
|
| 21 |
+
## Base models
|
| 22 |
+
- [CodeLlama-7b-hf](https://huggingface.co/codellama/CodeLlama-7b-hf)
|
| 23 |
+
- [CodeLlama-13b-hf](https://huggingface.co/codellama/CodeLlama-13b-hf)
|
| 24 |
+
- [CodeLlama-34b-hf](https://huggingface.co/codellama/CodeLlama-34b-hf)
|
| 25 |
+
|
| 26 |
+
## Python models
|
| 27 |
+
- [CodeLlama-7b-Python-hf](https://huggingface.co/codellama/CodeLlama-7b-Python-hf)
|
| 28 |
+
- [CodeLlama-13b-Python-hf](https://huggingface.co/codellama/CodeLlama-13b-Python-hf)
|
| 29 |
+
- [CodeLlama-34b-Ptyhon-hf](https://huggingface.co/codellama/CodeLlama-34b-Python-hf)
|
| 30 |
+
|
| 31 |
+
## Instruction models models
|
| 32 |
+
- [CodeLlama-7b-Instruct-hf](https://huggingface.co/codellama/CodeLlama-7b-Instruct-hf)
|
| 33 |
+
- [CodeLlama-13b-Instruct-hf](https://huggingface.co/codellama/CodeLlama-13b-Instruct-hf)
|
| 34 |
+
- [CodeLlama-34b-Instruct-hf](https://huggingface.co/codellama/CodeLlama-34b-Instruct-hf)
|
| 35 |
+
|
| 36 |
+
## Demo
|
| 37 |
+
|
| 38 |
+
_Coming soon_
|