Instructions to use prithivMLmods/Face-Mask-Detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Face-Mask-Detection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="prithivMLmods/Face-Mask-Detection") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoProcessor, AutoModelForImageClassification processor = AutoProcessor.from_pretrained("prithivMLmods/Face-Mask-Detection") model = AutoModelForImageClassification.from_pretrained("prithivMLmods/Face-Mask-Detection") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,7 +13,7 @@ tags:
|
|
| 13 |
- SigLIP2
|
| 14 |
---
|
| 15 |
|
| 16 |
-

|
| 17 |
|
| 18 |
# **Face-Mask-Detection**
|
| 19 |
|
|
|
|
| 105 |
* **COVID-19 Compliance Monitoring**
|
| 106 |
* **Security and Access Control**
|
| 107 |
* **Automated Surveillance Systems**
|
| 108 |
+
* **Health Safety Enforcement in Public Spaces**
|