pcuenq HF staff commited on
Commit
533ac5f
1 Parent(s): 82ad5cd

Model capabilities (#9)

Browse files

- Model capabilities (6026421fb9f6d72f03546d1bfaebf4b6c553bef8)

Files changed (1) hide show
  1. README.md +10 -1
README.md CHANGED
@@ -16,12 +16,21 @@ Code Llama is a collection of pretrained and fine-tuned generative text models r
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
 
19
- Make sure to install transformers from `main` until a new version is released:
 
 
20
 
21
  ```bash
22
  pip install git+https://github.com/huggingface/transformers.git@main accelerate
23
  ```
24
 
 
 
 
 
 
 
 
25
 
26
  ```python
27
  from transformers import AutoTokenizer
 
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
 
19
+ ## Model Use
20
+
21
+ To use this model, please make sure to install transformers from `main` until the next version is released:
22
 
23
  ```bash
24
  pip install git+https://github.com/huggingface/transformers.git@main accelerate
25
  ```
26
 
27
+ Model capabilities:
28
+
29
+ - [x] Code completion.
30
+ - [x] Infilling.
31
+ - [ ] Instructions / chat.
32
+ - [ ] Python specialist.
33
+
34
 
35
  ```python
36
  from transformers import AutoTokenizer