Quantization
Collection
A collection of quantized models. All the models can be fine-tuned by adding a LoRA Adapter. • 82 items • Updated • 3
Original Base Model: CohereForAI/c4ai-command-r-v01.
Link: https://huggingface.co/CohereForAI/c4ai-command-r-v01
{
"bits": 4,
"group_size": 128,
"damp_percent": 0.01,
"desc_act": true,
"static_groups": false,
"sym": true,
"true_sequential": true,
"model_name_or_path": null,
"model_file_base_name": null,
"quant_method": "gptq",
"checkpoint_format": "gptq"
}
Source Codes: https://github.com/vkola-lab/medpodgpt/tree/main/quantization.
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "shuyuej/Command-R-GPTQ"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "shuyuej/Command-R-GPTQ", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'