fxmeng commited on
Commit
a7c4db9
·
verified ·
1 Parent(s): bb8db14

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -8
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
- import transmla.vllm_registry.deepseek # from [github repo](https://github.com/MuLabPKU/TransMLA)
8
-
9
- from vllm import LLM, SamplingParams
10
- llm = LLM(model="fxmeng/TransMLA-llama3-8b-8k", trust_remote_code=True)
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
+ ```