Instructions to use LH-Tech-AI/GyroScope with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use LH-Tech-AI/GyroScope with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="LH-Tech-AI/GyroScope") 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("LH-Tech-AI/GyroScope") model = AutoModelForImageClassification.from_pretrained("LH-Tech-AI/GyroScope") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -110,7 +110,8 @@ Input (rotated 180°):
|
|
| 110 |

|
| 111 |
|
| 112 |
GyroScope Output:
|
| 113 |
-
|
|
|
|
| 114 |
<br>
|
| 115 |
Corrected:
|
| 116 |
|
|
|
|
| 110 |

|
| 111 |
|
| 112 |
GyroScope Output:
|
| 113 |
+
**📐 Recognized: 90° | Correction: 270°**
|
| 114 |
+
**📊 Probs: {'0°': '0.0257', '90°': '0.8706', '180°': '0.0735', '270°': '0.0300'}**
|
| 115 |
<br>
|
| 116 |
Corrected:
|
| 117 |
|