Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: meta-llama/Llama-2-7b-hf
|
3 |
+
inference: true
|
4 |
+
model_type: llama
|
5 |
+
pipeline_tag: text-generation
|
6 |
+
datasets:
|
7 |
+
- theblackcat102/evol-codealpaca-v1
|
8 |
+
tags:
|
9 |
+
- code
|
10 |
+
---
|
11 |
+
|
12 |
+
# Llama-2-7b-evolcodealpaca
|
13 |
+
|
14 |
+
This repo contains a [Llama 2 7B](https://huggingface.co/meta-llama/Llama-2-7b-hf) finetuned for code generation tasks using the [Evolved CodeAlpaca](https://huggingface.co/datasets/theblackcat102/evol-codealpaca-v1) dataset.
|
15 |
+
|
16 |
+
**Authors**: Neural Magic, Cerebras
|
17 |
+
|
18 |
+
## Usage
|
19 |
+
|
20 |
+
Below we share some code snippets on how to get quickly started with running the model.
|
21 |
+
|
22 |
+
### Sparse Transfer
|
23 |
+
|
24 |
+
By leveraging a pre-sparsified model's structure, you can efficiently fine-tune on new data, leading to reduced hyperparameter tuning, training times, and computational costs. Learn about this process [here](https://neuralmagic.github.io/docs-v2/get-started/transfer).
|
25 |
+
|
26 |
+
### Running the model
|
27 |
+
|
28 |
+
This model may be run with the transformers library. For accelerated inference with sparsity, deploy with [nm-vllm](https://github.com/neuralmagic/nm-vllm) or [deepsparse](https://github.com/neuralmagic/deepsparse).
|
29 |
+
|
30 |
+
```python
|
31 |
+
# pip install transformers accelerate
|
32 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
33 |
+
|
34 |
+
tokenizer = AutoTokenizer.from_pretrained("neuralmagic/Llama-2-7b-evolcodealpaca")
|
35 |
+
model = AutoModelForCausalLM.from_pretrained("neuralmagic/Llama-2-7b-evolcodealpaca", device_map="auto")
|
36 |
+
|
37 |
+
input_text = "def fibonacci(n):\n"
|
38 |
+
input_ids = tokenizer(input_text, return_tensors="pt").to("cuda")
|
39 |
+
|
40 |
+
outputs = model.generate(**input_ids)
|
41 |
+
print(tokenizer.decode(outputs[0]))
|
42 |
+
```
|
43 |
+
|
44 |
+
## Evaluation Benchmark Results
|
45 |
+
|
46 |
+
Model evaluation metrics and results.
|
47 |
+
|
48 |
+
| Benchmark | Metric | Llama-2-7b-evolcodealpaca | Llama-2-7b-pruned50-retrained-evolcodealpaca |
|
49 |
+
|------------------------------------------------|---------------|-------------|-------------------------------|
|
50 |
+
| [HumanEval](https://arxiv.org/abs/2107.03374) | pass@1 | xxxx | xxxx |
|
51 |
+
|
52 |
+
## Model Training Details
|
53 |
+
|
54 |
+
Coming soon.
|
55 |
+
|
56 |
+
## Help
|
57 |
+
|
58 |
+
For further support, and discussions on these models and AI in general, join [Neural Magic's Slack Community](https://join.slack.com/t/discuss-neuralmagic/shared_invite/zt-q1a1cnvo-YBoICSIw3L1dmQpjBeDurQ)
|