--- library_name: transformers tags: - image-classification - dummy pipeline_tag: image-classification --- # Dummy Image Classification Submission This is a tiny random-weight dummy model for testing a Hugging Face image-classification submission workflow. It is **not trained** and should not be used for real scoring. Expected loading pattern: ```python from transformers import AutoImageProcessor, AutoModelForImageClassification repo_id = "huji-iml-hackathon-2026/test-submission" processor = AutoImageProcessor.from_pretrained(repo_id) model = AutoModelForImageClassification.from_pretrained(repo_id, trust_remote_code=False) ``` Labels: - cat - dog - bird