File size: 2,025 Bytes
0096a37 | 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 | ---
license: mit
tags:
- stable-diffusion
- lora
- safetensors
- text-to-image
- healthcare
- kohya-ss
base_model: runwayml/stable-diffusion-v1-5
---
# Helios OrthoJoint
## Model Description
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.
## Model Architecture
- **Base Model**: Stable Diffusion v1.5 (`runwayml/stable-diffusion-v1-5`)
- **Fine-tuning Method**: LoRA (Low-Rank Adaptation)
- **Framework**: Diffusers / Kohya-SS
- **Task**: Text-to-Image Generation (Medical Domain)
## Training Details
- **Training Tool**: Kohya-SS LoRA trainer
- **Domain**: Orthopedic / Joint medical imagery
- **Trigger Words**: Use medical/orthopedic descriptors in prompts for best results
- **Steps**: Fine-tuned to convergence on curated orthopedic image dataset
## Files
| File | Description |
|------|-------------|
| `Helios_OrthoJoint_v1.safetensors` | LoRA weights (safetensors format) |
## Usage
```python
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")
```
## Download & Use
```python
from huggingface_hub import hf_hub_download
lora_path = hf_hub_download(repo_id='devanshty/Helios-OrthoJoint', filename='Helios_OrthoJoint_v1.safetensors')
```
## Disclaimer
Generated images are for research and educational use only and should not be used for clinical diagnosis.
|