Update README.md
Browse files
README.md
CHANGED
|
@@ -1,11 +1,14 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
-
|
| 5 |
-
To serve the model using vLLM, use the following command:
|
| 6 |
-
```
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
base_model:
|
| 4 |
+
- meta-llama/Meta-Llama-3-8B
|
| 5 |
---
|
| 6 |
+
|
| 7 |
+
To serve the model using vLLM, use the following command:
|
| 8 |
+
```
|
| 9 |
+
# from [github repo](https://github.com/MuLabPKU/TransMLA)
|
| 10 |
+
import transmla.vllm_registry.deepseek
|
| 11 |
+
|
| 12 |
+
from vllm import LLM, SamplingParams
|
| 13 |
+
llm = LLM(model="fxmeng/TransMLA-llama3-8b-8k", trust_remote_code=True)
|
| 14 |
+
```
|