amer8 commited on
Commit
3a9a6a4
·
verified ·
1 Parent(s): 6681c20

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -42,14 +42,14 @@ This is an **NVFP4 quantized** version of [deepseek-ai/DeepSeek-R1-Distill-Llama
42
  ```python
43
  from tensorrt_llm import LLM
44
 
45
- llm = LLM(model="YOUR_USERNAME/DeepSeek-R1-Distill-Llama-8B-NVFP4")
46
  output = llm.generate("Paris is great because")
47
  print(output)
48
  ```
49
 
50
  ### With TensorRT-LLM Server
51
  ```bash
52
- trtllm-serve YOUR_USERNAME/DeepSeek-R1-Distill-Llama-8B-NVFP4 \
53
  --backend pytorch \
54
  --port 8000
55
  ```
 
42
  ```python
43
  from tensorrt_llm import LLM
44
 
45
+ llm = LLM(model="amer8/DeepSeek-R1-Distill-Llama-8B-NVFP4")
46
  output = llm.generate("Paris is great because")
47
  print(output)
48
  ```
49
 
50
  ### With TensorRT-LLM Server
51
  ```bash
52
+ trtllm-serve amer8/DeepSeek-R1-Distill-Llama-8B-NVFP4 \
53
  --backend pytorch \
54
  --port 8000
55
  ```