Views
No views yet
1from transformers import AutoImageProcessor, AutoModelForImageClassification
2
3repo_id = "huji-iml-hackathon-2026/test-submission"
4processor = AutoImageProcessor.from_pretrained(repo_id)
5model = AutoModelForImageClassification.from_pretrained(repo_id, trust_remote_code=False)