captcha-crnn-base
34
license:mit
by
Graf-J
Image Model
OTHER
New
34 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
🚀 Quick Start (Pipeline - Recommended)pythontransformers
from transformers import pipeline
from PIL import Image
# Initialize the pipeline
pipe = pipeline(
task="captcha-recognition",
model="Graf-J/captcha-crnn-base",
trust_remote_code=True
)
# Load and predict
img = Image.open("path/to/image.png")
result = pipe(img)
print(f"Decoded Text: {result['prediction']}")🔬 Advanced Usage (Raw Logits & Custom Decoding)pythontransformers
import torch
from PIL import Image
from transformers import AutoModel, AutoProcessor
# Load Model & Custom Processor
repo_id = "Graf-J/captcha-crnn-base"
processor = AutoProcessor.from_pretrained(repo_id, trust_remote_code=True)
model = AutoModel.from_pretrained(repo_id, trust_remote_code=True)
model.eval()
# Load and process image
img = Image.open("path/to/image.png")
inputs = processor(img)
# Inference
with torch.no_grad():
outputs = model(inputs["pixel_values"])
logits = outputs.logits
# Decode the prediction via CTC logic
prediction = processor.batch_decode(logits)[0]
print(f"Prediction: '{prediction}'")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.