Image Classification
Transformers
PyTorch
resnet
resnet50
agriculture
anomaly-detection
wheat
plant-disease
Instructions to use jays009/Resnet3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jays009/Resnet3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="jays009/Resnet3") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("jays009/Resnet3", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Delete config.json
Browse files- config.json +0 -19
config.json
DELETED
|
@@ -1,19 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"model_type": "resnet",
|
| 3 |
-
"task": "image-classification",
|
| 4 |
-
"framework": "pytorch",
|
| 5 |
-
"pipeline_tag": "image-classification",
|
| 6 |
-
"preprocessing": {
|
| 7 |
-
"resize": 256,
|
| 8 |
-
"center_crop": 224,
|
| 9 |
-
"normalize": [0.485, 0.456, 0.406],
|
| 10 |
-
"normalize_std": [0.229, 0.224, 0.225]
|
| 11 |
-
},
|
| 12 |
-
"license": "apache-2.0",
|
| 13 |
-
"tags": [
|
| 14 |
-
"image-classification",
|
| 15 |
-
"wheat-disease-detection",
|
| 16 |
-
"agriculture"
|
| 17 |
-
]
|
| 18 |
-
}
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|