Instructions to use ronka/postureDetection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ronka/postureDetection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="ronka/postureDetection") 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("ronka/postureDetection") model = AutoModelForImageClassification.from_pretrained("ronka/postureDetection") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
todo for me
|
| 2 |
|
| 3 |
gotta update this card later
|
| 4 |
-
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
todo for me
|
| 2 |
|
| 3 |
gotta update this card later
|
| 4 |
+
|
| 5 |
+
update the dataset with validation pics (and possibly test)
|
| 6 |
+
and train this model again
|
| 7 |
+
|
| 8 |
+
figure out why i cant run it on vscode
|