Text Generation
Transformers
Safetensors
English
llama
text-generation-inference
unsloth
trl
sft
conversational
Instructions to use Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1") model = AutoModelForCausalLM.from_pretrained("Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1
- SGLang
How to use Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio
How to use Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1", max_seq_length=2048, ) - Docker Model Runner
How to use Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1 with Docker Model Runner:
docker model run hf.co/Pavariss/DeepSeek-R1-ThaiInsurance-COT-Demo1
Trained with Unsloth
Browse files- config.json +0 -12
- model-00001-of-00004.safetensors +3 -0
- model-00002-of-00004.safetensors +3 -0
- model-00003-of-00004.safetensors +3 -0
- model-00004-of-00004.safetensors +3 -0
- model.safetensors.index.json +0 -0
config.json
CHANGED
|
@@ -20,18 +20,6 @@
|
|
| 20 |
"num_key_value_heads": 8,
|
| 21 |
"pad_token_id": 128004,
|
| 22 |
"pretraining_tp": 1,
|
| 23 |
-
"quantization_config": {
|
| 24 |
-
"bnb_4bit_compute_dtype": "bfloat16",
|
| 25 |
-
"bnb_4bit_quant_type": "nf4",
|
| 26 |
-
"bnb_4bit_use_double_quant": true,
|
| 27 |
-
"llm_int8_enable_fp32_cpu_offload": false,
|
| 28 |
-
"llm_int8_has_fp16_weight": false,
|
| 29 |
-
"llm_int8_skip_modules": null,
|
| 30 |
-
"llm_int8_threshold": 6.0,
|
| 31 |
-
"load_in_4bit": true,
|
| 32 |
-
"load_in_8bit": false,
|
| 33 |
-
"quant_method": "bitsandbytes"
|
| 34 |
-
},
|
| 35 |
"rms_norm_eps": 1e-05,
|
| 36 |
"rope_scaling": {
|
| 37 |
"factor": 8.0,
|
|
|
|
| 20 |
"num_key_value_heads": 8,
|
| 21 |
"pad_token_id": 128004,
|
| 22 |
"pretraining_tp": 1,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
"rms_norm_eps": 1e-05,
|
| 24 |
"rope_scaling": {
|
| 25 |
"factor": 8.0,
|
model-00001-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9751116942b67a987229802af8dddd698a344d15c8bd3654dcc5889bac7cbd44
|
| 3 |
+
size 4976698672
|
model-00002-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79f62422813e20e917c281e78c904217af8d6028b0912bb4b3e532116637915f
|
| 3 |
+
size 4999802720
|
model-00003-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9cce93b9ee72848aa7e5d5c9b45c7ac71f4b6d0b15150629fc7d01b58ad36d50
|
| 3 |
+
size 4915916176
|
model-00004-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95156857fab5502e850fb449bfcb29a4b9fa82117e0f48f404f5b965cea92d58
|
| 3 |
+
size 1168138808
|
model.safetensors.index.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|