historic-newspaper-illustrations-yolov11

11
license:agpl-3.0
by
small-models-for-glam
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

๐Ÿš€ Quick Startbash
pip install ultralytics huggingface_hub
๐Ÿš€ Quick Startpython
from huggingface_hub import hf_hub_download
from ultralytics import YOLO

# Download and load nano model
model = YOLO(hf_hub_download(
    repo_id="small-models-for-glam/historic-newspaper-illustrations-yolov11",
    filename="yolo11n.pt"
))

# Or download and load small model
model = YOLO(hf_hub_download(
    repo_id="small-models-for-glam/historic-newspaper-illustrations-yolov11",
    filename="yolo11s.pt"
))

# Run inference on an image
results = model("path/to/newspaper_page.jpg")

# Process results
for result in results:
    boxes = result.boxes  # Boxes object for bbox outputs
    for box in boxes:
        # Get box coordinates
        x1, y1, x2, y2 = box.xyxy[0]
        # Get confidence score
        conf = box.conf[0]
        # Get class
        cls = box.cls[0]
        # Get class name
        class_name = model.names[int(cls)]
        print(f"Detected {class_name} with confidence {conf:.2f}")

Deploy This Model

Production-ready deployment in minutes

Together.ai

Instant API access to this model

Fastest API

Production-ready inference API. Start free, scale to millions.

Try Free API

Replicate

One-click model deployment

Easiest Setup

Run models in the cloud with simple API. No DevOps required.

Deploy Now

Disclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.