Downloads · 30 days
0
devanshty/Helios-OrthoJoint
Helios-OrthoJoint is a text-to-image model from devanshty. Use it when you need an image from a text prompt. The card lists the license as mit.
Helios-OrthoJoint is a Stable Diffusion 1.5 LoRA fine-tuned for generating high-quality orthopedic and medical joint imagery. Designed for healthcare AI applications including medical illustration, patient education,…
Downloads · 30 days
0
Access
Public
Updated May 29, 2026
Repo size
37.9 MB
Likes
0
Public
Click a slice to open those files.
.safetensors37.9 MB · 100%
From the Hugging Face model README
Helios-OrthoJoint is a Stable Diffusion 1.5 LoRA fine-tuned for generating high-quality orthopedic and medical joint imagery. Designed for healthcare AI applications including medical illustration, patient education, and synthetic data generation for joint anatomy.
runwayml/stable-diffusion-v1-5)| File | Description |
|---|---|
Helios_OrthoJoint_v1.safetensors | LoRA weights (safetensors format) |
from diffusers import StableDiffusionPipeline
import torch
from huggingface_hub import hf_hub_download
# Download LoRA weights
lora_path = hf_hub_download(repo_id='devanshty/Helios-OrthoJoint', filename='Helios_OrthoJoint_v1.safetensors')
# Load base pipeline
pipe = StableDiffusionPipeline.from_pretrained(
"runwayml/stable-diffusion-v1-5",
torch_dtype=torch.float16
).to("cuda")
# Load LoRA weights
pipe.load_lora_weights(lora_path)
# Generate
image = pipe("orthopedic knee joint X-ray, medical illustration, high detail").images[0]
image.save("output.png")
from huggingface_hub import hf_hub_download
lora_path = hf_hub_download(repo_id='devanshty/Helios-OrthoJoint', filename='Helios_OrthoJoint_v1.safetensors')
Generated images are for research and educational use only and should not be used for clinical diagnosis.