Instructions to use DineshKumar1329/DogCat_Classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DineshKumar1329/DogCat_Classifier with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("DineshKumar1329/DogCat_Classifier", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -69,4 +69,4 @@ result = classifier(image_path)
|
|
| 69 |
predicted_label = result[0]['label']
|
| 70 |
|
| 71 |
# Output the prediction
|
| 72 |
-
print(f'The predicted class for the image is: {predicted_label}')
|
|
|
|
| 69 |
predicted_label = result[0]['label']
|
| 70 |
|
| 71 |
# Output the prediction
|
| 72 |
+
print(f'The predicted class for the image is: {predicted_label}')
|