Instructions to use harness-race/opencode-r3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use harness-race/opencode-r3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("object-detection", model="harness-race/opencode-r3")# Load model directly from transformers import AutoImageProcessor, AutoModelForObjectDetection processor = AutoImageProcessor.from_pretrained("harness-race/opencode-r3") model = AutoModelForObjectDetection.from_pretrained("harness-race/opencode-r3", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 1,154 Bytes
43cc1b2 afeeaf8 43cc1b2 951cd3d 43cc1b2 951cd3d afeeaf8 951cd3d afeeaf8 | 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 | # /// script
# requires-python = ">=3.10"
# dependencies = [
# "torch>=2.1",
# "datasets>=2.18",
# "pycocotools",
# "Pillow",
# "numpy",
# ]
# ///
import os, io
from PIL import Image
import datasets as hfds
data_dir = "/data"
if not os.path.isdir(data_dir):
data_dir = "biglam/loc_beyond_words"
ds = hfds.load_dataset(data_dir, split="validation")
examples = list(ds)
print("loaded", len(examples))
ex = examples[0]
print("keys:", list(ex.keys()), "w/h:", ex["width"], ex["height"])
objs = ex["objects"]
print("objects type:", type(objs), "len:", len(objs))
o = objs[0]
print("obj keys:", list(o.keys()))
print("category_id:", repr(o["category_id"]), "type:", type(o["category_id"]).__name__)
print("bbox:", o["bbox"], "type:", type(o["bbox"]).__name__)
img = ex["image"]
print("image type:", type(img).__name__)
im = img.size if not isinstance(img, dict) else Image.open(io.BytesIO(img["bytes"])).size
print("img size:", im)
from collections import Counter
cats = Counter()
for e in examples[:200]:
for o in e["objects"]:
cats[repr(o["category_id"])] += 1
print("category_id value distribution sample:", dict(cats))
|