lumichats_v1.3_11b_vision
1
mllama
by
adityakum667388
Image Model
OTHER
11B params
New
0 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
25GB+ RAM
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Device Compatibility
Mobile
4-6GB RAM
Laptop
16GB RAM
Server
GPU
Minimum Recommended
11GB+ RAM
Code Examples
Inference Examplepython
import requests
from PIL import Image
# Load medical image
image_url = "https://example.com/panoramic_radiograph.jpg"
image = Image.open(requests.get(image_url, stream=True).raw)
# Prepare prompt
prompt = """You are an expert radiographer. Analyze this medical image and provide a professional clinical description focusing on pathology and anatomical findings."""
# Process
inputs = processor(text=prompt, images=image, return_tensors="pt")
# Generate
with torch.no_grad():
outputs = model.generate(
**inputs,
max_new_tokens=150,
do_sample=True,
temperature=0.1,
top_p=0.95,
pad_token_id=processor.tokenizer.eos_token_id
)
# Decode
response = processor.decode(outputs[0], skip_special_tokens=True)
print(response)Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.