Text Generation
Transformers
Safetensors
English
medical
healthcare
medical-feature-extraction
clinical-nlp
calibration
instruction-fine-tuned
nlp
mistral
conversational
Instructions to use Manal0809/Mistral_calibrative_full with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Manal0809/Mistral_calibrative_full with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Manal0809/Mistral_calibrative_full") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Manal0809/Mistral_calibrative_full", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Manal0809/Mistral_calibrative_full with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Manal0809/Mistral_calibrative_full" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Manal0809/Mistral_calibrative_full", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Manal0809/Mistral_calibrative_full
- SGLang
How to use Manal0809/Mistral_calibrative_full 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 "Manal0809/Mistral_calibrative_full" \ --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": "Manal0809/Mistral_calibrative_full", "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 "Manal0809/Mistral_calibrative_full" \ --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": "Manal0809/Mistral_calibrative_full", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Manal0809/Mistral_calibrative_full with Docker Model Runner:
docker model run hf.co/Manal0809/Mistral_calibrative_full
- Xet hash:
- 7b5b773d0adc4c15fe7b71c6eb88ac0a699522c5bc815a6368aa69e9470b8e44
- Size of remote file:
- 17.1 MB
- SHA256:
- b0240ce510f08e6c2041724e9043e33be9d251d1e4a4d94eb68cd47b954b61d2
·
Xet efficiently stores Large Files inside Git, intelligently splitting files into unique chunks and accelerating uploads and downloads. More info.