Downloads · 30 days
7
9% of all-time downloads
Teen-Different/arc-it
arc-it is a machine learning model from Teen-Different. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as mit.
A novel architecture that solves abstract reasoning tasks (ARC-AGI) by explicitly extracting transformation rules from demonstration pairs and applying them to new inputs:
Downloads · 30 days
7
9% of all-time downloads
All-time downloads
79
Public
Repo size
15 GB
Likes
0
Public
Click a slice to open those files.
.pt68.1 MB · 100%
From the Hugging Face model README
A novel architecture that solves abstract reasoning tasks (ARC-AGI) by explicitly extracting transformation rules from demonstration pairs and applying them to new inputs:
Demo Pairs -> GridTokenizer -> RuleEncoder (cross-attention + aggregation) -> Rule Tokens
Test Input -> GridTokenizer -> RuleApplier (cross-attention to rules) -> SpatialDecoder -> Predicted Grid
import torch
from arc_it.models.arc_it_model import ARCITModel
model = ARCITModel.from_config(config)
ckpt = torch.load("model.pt", map_location="cpu", weights_only=False)
model.load_state_dict(ckpt["model_state_dict"])