Update README.md
Browse files
README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
-
|
| 2 |
---
|
| 3 |
license: apache-2.0
|
| 4 |
pipeline_tag: image-classification
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
# Font Classifier DINOv2 (Server-Side Preprocessing)
|
|
@@ -113,4 +113,4 @@ def forward(self, pixel_values=None, labels=None, **kwargs):
|
|
| 113 |
return super().forward(pixel_values=processed_pixel_values, labels=labels, **kwargs)
|
| 114 |
```
|
| 115 |
|
| 116 |
-
This ensures that whether clients send raw images or pre-processed tensors, the model receives correctly formatted input.
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
pipeline_tag: image-classification
|
| 4 |
+
library_name: transformers
|
| 5 |
---
|
| 6 |
|
| 7 |
# Font Classifier DINOv2 (Server-Side Preprocessing)
|
|
|
|
| 113 |
return super().forward(pixel_values=processed_pixel_values, labels=labels, **kwargs)
|
| 114 |
```
|
| 115 |
|
| 116 |
+
This ensures that whether clients send raw images or pre-processed tensors, the model receives correctly formatted input.
|