Text Generation
Transformers
Safetensors
PEFT
French
qwen3
medical
french
question-answering
lora
qlora
domain-adaptation
clinical-nlp
french-medical
extractive-qa
abstractive-qa
multiple-choice-qa
conversational
text-generation-inference
Instructions to use boods/EnToFrMedicaLLM-Multilingual with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use boods/EnToFrMedicaLLM-Multilingual with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="boods/EnToFrMedicaLLM-Multilingual") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("boods/EnToFrMedicaLLM-Multilingual") model = AutoModelForCausalLM.from_pretrained("boods/EnToFrMedicaLLM-Multilingual") 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]:])) - PEFT
How to use boods/EnToFrMedicaLLM-Multilingual with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use boods/EnToFrMedicaLLM-Multilingual with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "boods/EnToFrMedicaLLM-Multilingual" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "boods/EnToFrMedicaLLM-Multilingual", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/boods/EnToFrMedicaLLM-Multilingual
- SGLang
How to use boods/EnToFrMedicaLLM-Multilingual 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 "boods/EnToFrMedicaLLM-Multilingual" \ --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": "boods/EnToFrMedicaLLM-Multilingual", "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 "boods/EnToFrMedicaLLM-Multilingual" \ --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": "boods/EnToFrMedicaLLM-Multilingual", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use boods/EnToFrMedicaLLM-Multilingual with Docker Model Runner:
docker model run hf.co/boods/EnToFrMedicaLLM-Multilingual
File size: 2,085 Bytes
5065e74 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | {
"transformers_version": "5.5.0",
"architectures": [
"Qwen3ForCausalLM"
],
"output_hidden_states": false,
"return_dict": true,
"dtype": "bfloat16",
"chunk_size_feed_forward": 0,
"is_encoder_decoder": false,
"id2label": {
"0": "LABEL_0",
"1": "LABEL_1"
},
"label2id": {
"LABEL_0": 0,
"LABEL_1": 1
},
"problem_type": null,
"vocab_size": 151936,
"hidden_size": 5120,
"intermediate_size": 17408,
"num_hidden_layers": 40,
"num_attention_heads": 40,
"num_key_value_heads": 8,
"head_dim": 128,
"hidden_act": "silu",
"max_position_embeddings": 40960,
"initializer_range": 0.02,
"rms_norm_eps": 1e-06,
"use_cache": true,
"tie_word_embeddings": false,
"rope_parameters": {
"rope_theta": 1000000,
"rope_type": "default"
},
"attention_bias": false,
"use_sliding_window": false,
"sliding_window": null,
"max_window_layers": 40,
"layer_types": [
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention",
"full_attention"
],
"attention_dropout": 0.0,
"pad_token_id": 151669,
"bos_token_id": null,
"eos_token_id": 151645,
"_name_or_path": "unsloth/Qwen3-14B-unsloth-bnb-4bit",
"model_type": "qwen3",
"unsloth_fixed": true,
"unsloth_version": "2026.5.2",
"output_attentions": false
} |