Instructions to use dima806/beard_face_image_detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dima806/beard_face_image_detection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="dima806/beard_face_image_detection") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("dima806/beard_face_image_detection") model = AutoModelForImageClassification.from_pretrained("dima806/beard_face_image_detection") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,10 +13,10 @@ Classification report:
|
|
| 13 |
|
| 14 |
precision recall f1-score support
|
| 15 |
|
| 16 |
-
Beard 1.0000
|
| 17 |
-
No Beard
|
| 18 |
|
| 19 |
-
accuracy
|
| 20 |
-
macro avg
|
| 21 |
-
weighted avg
|
| 22 |
```
|
|
|
|
| 13 |
|
| 14 |
precision recall f1-score support
|
| 15 |
|
| 16 |
+
Beard 1.0000 1.0000 1.0000 34
|
| 17 |
+
No Beard 1.0000 1.0000 1.0000 34
|
| 18 |
|
| 19 |
+
accuracy 1.0000 68
|
| 20 |
+
macro avg 1.0000 1.0000 1.0000 68
|
| 21 |
+
weighted avg 1.0000 1.0000 1.0000 68
|
| 22 |
```
|