pcuenq HF staff commited on
Commit
6f7c241
1 Parent(s): 7affc44

Use and capabilities (#6)

Browse files

- Use and capabilities (09623edd24257fad12877a47bd358c3ab62d1b37)

Files changed (1) hide show
  1. README.md +16 -0
README.md CHANGED
@@ -15,6 +15,22 @@ Code Llama is a collection of pretrained and fine-tuned generative text models r
15
  | 13B | [codellama/CodeLlama-13b-hf](https://huggingface.co/codellama/CodeLlama-13b-hf) | [codellama/CodeLlama-13b-Python-hf](https://huggingface.co/codellama/CodeLlama-13b-Python-hf) | [codellama/CodeLlama-13b-Instruct-hf](https://huggingface.co/codellama/CodeLlama-13b-Instruct-hf) |
16
  | 34B | [codellama/CodeLlama-34b-hf](https://huggingface.co/codellama/CodeLlama-34b-hf) | [codellama/CodeLlama-34b-Python-hf](https://huggingface.co/codellama/CodeLlama-34b-Python-hf) | [codellama/CodeLlama-34b-Instruct-hf](https://huggingface.co/codellama/CodeLlama-34b-Instruct-hf) |
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  ## Model Details
19
  *Note: Use of this model is governed by the Meta license. Meta developed and publicly released the Code Llama family of large language models (LLMs).
20
 
 
15
  | 13B | [codellama/CodeLlama-13b-hf](https://huggingface.co/codellama/CodeLlama-13b-hf) | [codellama/CodeLlama-13b-Python-hf](https://huggingface.co/codellama/CodeLlama-13b-Python-hf) | [codellama/CodeLlama-13b-Instruct-hf](https://huggingface.co/codellama/CodeLlama-13b-Instruct-hf) |
16
  | 34B | [codellama/CodeLlama-34b-hf](https://huggingface.co/codellama/CodeLlama-34b-hf) | [codellama/CodeLlama-34b-Python-hf](https://huggingface.co/codellama/CodeLlama-34b-Python-hf) | [codellama/CodeLlama-34b-Instruct-hf](https://huggingface.co/codellama/CodeLlama-34b-Instruct-hf) |
17
 
18
+ ## Model Use
19
+
20
+ To use this model, please make sure to install transformers from `main` until the next version is released:
21
+
22
+ ```bash
23
+ pip install git+https://github.com/huggingface/transformers.git@main accelerate
24
+ ```
25
+
26
+ Model capabilities:
27
+
28
+ - [x] Code completion.
29
+ - [x] Infilling.
30
+ - [x] Instructions / chat.
31
+ - [ ] Python specialist.
32
+
33
+
34
  ## Model Details
35
  *Note: Use of this model is governed by the Meta license. Meta developed and publicly released the Code Llama family of large language models (LLMs).
36