Mitchins commited on
Commit
97939e9
·
verified ·
1 Parent(s): 5cf39fc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +6 -1
README.md CHANGED
@@ -1,6 +1,7 @@
1
  ---
2
  library_name: timm
3
  pipeline_tag: image-classification
 
4
  tags:
5
  - anime-classification
6
  - real-photos
@@ -15,11 +16,14 @@ inference: true
15
 
16
  # Anime/Real/Rendered Image Classifier (EfficientNet-B0)
17
 
18
- **Fast, lightweight classifier for distinguishing photographs from anime and 3D rendered images.**
 
 
19
 
20
  ## Model Details
21
 
22
  - **Architecture:** EfficientNet-B0 (timm)
 
23
  - **Input Size:** 224×224 RGB
24
  - **Classes:** anime, real, rendered
25
  - **Parameters:** 5.3M
@@ -80,6 +84,7 @@ print(f"{labels[pred_class]}: {probs[0, pred_class]:.2%}")
80
 
81
  ## Training Details
82
 
 
83
  - **Augmentation:** Raw (resize only)
84
  - **Optimizer:** AdamW (lr=0.001)
85
  - **Loss:** CrossEntropyLoss with class weighting
 
1
  ---
2
  library_name: timm
3
  pipeline_tag: image-classification
4
+ base_model: google/efficientnet-b0
5
  tags:
6
  - anime-classification
7
  - real-photos
 
16
 
17
  # Anime/Real/Rendered Image Classifier (EfficientNet-B0)
18
 
19
+ Fine-tuned EfficientNet-B0 for distinguishing photographs from anime and 3D rendered images.
20
+
21
+ **Base Model:** [google/efficientnet-b0](https://huggingface.co/google/efficientnet-b0)
22
 
23
  ## Model Details
24
 
25
  - **Architecture:** EfficientNet-B0 (timm)
26
+ - **Base Model:** Google's EfficientNet-B0 (ImageNet pretrained)
27
  - **Input Size:** 224×224 RGB
28
  - **Classes:** anime, real, rendered
29
  - **Parameters:** 5.3M
 
84
 
85
  ## Training Details
86
 
87
+ - **Base Model:** ImageNet-pretrained EfficientNet-B0
88
  - **Augmentation:** Raw (resize only)
89
  - **Optimizer:** AdamW (lr=0.001)
90
  - **Loss:** CrossEntropyLoss with class weighting