osanseviero
commited on
Commit
•
9e14646
1
Parent(s):
406a83e
Update README.md
Browse files
README.md
CHANGED
@@ -7,7 +7,7 @@ tags:
|
|
7 |
license: llama2
|
8 |
---
|
9 |
# **Code Llama**
|
10 |
-
Code Llama is a collection of pretrained and fine-tuned generative text models ranging in scale from 7 billion to 70 billion parameters. This is the repository for the 70B
|
11 |
|
12 |
| | Base Model | Python | Instruct |
|
13 |
| --- | ----------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
|
@@ -18,17 +18,17 @@ Code Llama is a collection of pretrained and fine-tuned generative text models r
|
|
18 |
|
19 |
## Model Use
|
20 |
|
21 |
-
To use this model, please make sure to install transformers
|
22 |
|
23 |
```bash
|
24 |
-
pip install
|
25 |
```
|
26 |
|
27 |
Model capabilities:
|
28 |
|
29 |
- [x] Code completion.
|
30 |
- [ ] Infilling.
|
31 |
-
- [
|
32 |
- [ ] Python specialist.
|
33 |
|
34 |
## Model Details
|
@@ -44,7 +44,7 @@ Model capabilities:
|
|
44 |
|
45 |
All variants are available in sizes of 7B, 13B, 34B, and 70B parameters.
|
46 |
|
47 |
-
**This repository contains the
|
48 |
|
49 |
**Input** Models input text only.
|
50 |
|
@@ -77,4 +77,4 @@ See evaluations for the main models and detailed ablations in Section 3 and safe
|
|
77 |
|
78 |
Code Llama and its variants are a new technology that carries risks with use. Testing conducted to date has been in English, and has not covered, nor could it cover all scenarios. For these reasons, as with all LLMs, Code Llama’s potential outputs cannot be predicted in advance, and the model may in some instances produce inaccurate or objectionable responses to user prompts. Therefore, before deploying any applications of Code Llama, developers should perform safety testing and tuning tailored to their specific applications of the model.
|
79 |
|
80 |
-
Please see the Responsible Use Guide available available at [https://ai.meta.com/llama/responsible-use-guide](https://ai.meta.com/llama/responsible-use-guide).
|
|
|
7 |
license: llama2
|
8 |
---
|
9 |
# **Code Llama**
|
10 |
+
Code Llama is a collection of pretrained and fine-tuned generative text models ranging in scale from 7 billion to 70 billion parameters. This is the repository for the base 70B version in the Hugging Face Transformers format. This model is designed for general code synthesis and understanding. Links to other models can be found in the index at the bottom.
|
11 |
|
12 |
| | Base Model | Python | Instruct |
|
13 |
| --- | ----------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
|
|
|
18 |
|
19 |
## Model Use
|
20 |
|
21 |
+
To use this model, please make sure to install `transformers`.
|
22 |
|
23 |
```bash
|
24 |
+
pip install transformers accelerate
|
25 |
```
|
26 |
|
27 |
Model capabilities:
|
28 |
|
29 |
- [x] Code completion.
|
30 |
- [ ] Infilling.
|
31 |
+
- [ ] Instructions / chat.
|
32 |
- [ ] Python specialist.
|
33 |
|
34 |
## Model Details
|
|
|
44 |
|
45 |
All variants are available in sizes of 7B, 13B, 34B, and 70B parameters.
|
46 |
|
47 |
+
**This repository contains the base version of the 70B parameters model.**
|
48 |
|
49 |
**Input** Models input text only.
|
50 |
|
|
|
77 |
|
78 |
Code Llama and its variants are a new technology that carries risks with use. Testing conducted to date has been in English, and has not covered, nor could it cover all scenarios. For these reasons, as with all LLMs, Code Llama’s potential outputs cannot be predicted in advance, and the model may in some instances produce inaccurate or objectionable responses to user prompts. Therefore, before deploying any applications of Code Llama, developers should perform safety testing and tuning tailored to their specific applications of the model.
|
79 |
|
80 |
+
Please see the Responsible Use Guide available available at [https://ai.meta.com/llama/responsible-use-guide](https://ai.meta.com/llama/responsible-use-guide).
|