Instructions to use Aakash010/MedGemma_FineTuned with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Aakash010/MedGemma_FineTuned with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Aakash010/MedGemma_FineTuned", filename="medgemma-Q4_K_M.gguf", )
llm.create_chat_completion( messages = "{\n \"image\": \"cat.png\",\n \"prompt\": \"Turn the cat into a tiger.\"\n}" ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use Aakash010/MedGemma_FineTuned with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Aakash010/MedGemma_FineTuned:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Aakash010/MedGemma_FineTuned:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Aakash010/MedGemma_FineTuned:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Aakash010/MedGemma_FineTuned:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Aakash010/MedGemma_FineTuned:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Aakash010/MedGemma_FineTuned:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Aakash010/MedGemma_FineTuned:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Aakash010/MedGemma_FineTuned:Q4_K_M
Use Docker
docker model run hf.co/Aakash010/MedGemma_FineTuned:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use Aakash010/MedGemma_FineTuned with Ollama:
ollama run hf.co/Aakash010/MedGemma_FineTuned:Q4_K_M
- Unsloth Studio new
How to use Aakash010/MedGemma_FineTuned 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 Aakash010/MedGemma_FineTuned 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 Aakash010/MedGemma_FineTuned to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Aakash010/MedGemma_FineTuned to start chatting
- Docker Model Runner
How to use Aakash010/MedGemma_FineTuned with Docker Model Runner:
docker model run hf.co/Aakash010/MedGemma_FineTuned:Q4_K_M
- Lemonade
How to use Aakash010/MedGemma_FineTuned with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Aakash010/MedGemma_FineTuned:Q4_K_M
Run and chat with the model
lemonade run user.MedGemma_FineTuned-Q4_K_M
List all available models
lemonade list
File size: 570 Bytes
76d21c6 | 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 | {
"do_convert_rgb": null,
"do_normalize": true,
"do_pan_and_scan": null,
"do_rescale": true,
"do_resize": true,
"image_mean": [
0.5,
0.5,
0.5
],
"image_processor_type": "Gemma3ImageProcessor",
"image_seq_length": 256,
"image_std": [
0.5,
0.5,
0.5
],
"pan_and_scan_max_num_crops": null,
"pan_and_scan_min_crop_size": null,
"pan_and_scan_min_ratio_to_activate": null,
"processor_class": "Gemma3Processor",
"resample": 2,
"rescale_factor": 0.00392156862745098,
"size": {
"height": 896,
"width": 896
}
}
|