Instructions to use prithivMLmods/open-age-detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/open-age-detection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="prithivMLmods/open-age-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/open-age-detection") model = AutoModelForImageClassification.from_pretrained("prithivMLmods/open-age-detection") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -115,6 +115,16 @@ if __name__ == "__main__":
|
|
| 115 |
|
| 116 |
---
|
| 117 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 118 |
## Intended Use
|
| 119 |
|
| 120 |
`open-age-detection` is designed for:
|
|
|
|
| 115 |
|
| 116 |
---
|
| 117 |
|
| 118 |
+
## Demo Inference
|
| 119 |
+
|
| 120 |
+

|
| 121 |
+

|
| 122 |
+

|
| 123 |
+

|
| 124 |
+

|
| 125 |
+
|
| 126 |
+
---
|
| 127 |
+
|
| 128 |
## Intended Use
|
| 129 |
|
| 130 |
`open-age-detection` is designed for:
|