Instructions to use NawinCom/hack5-FFT-Correct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NawinCom/hack5-FFT-Correct with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="NawinCom/hack5-FFT-Correct") 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("NawinCom/hack5-FFT-Correct") model = AutoModelForImageClassification.from_pretrained("NawinCom/hack5-FFT-Correct") - Notebooks
- Google Colab
- Kaggle
Upload feature extractor
Browse files- preprocessor_config.json +2 -2
preprocessor_config.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
| 16 |
"resample": 2,
|
| 17 |
"rescale_factor": 0.00392156862745098,
|
| 18 |
"size": {
|
| 19 |
-
"height":
|
| 20 |
-
"width":
|
| 21 |
}
|
| 22 |
}
|
|
|
|
| 16 |
"resample": 2,
|
| 17 |
"rescale_factor": 0.00392156862745098,
|
| 18 |
"size": {
|
| 19 |
+
"height": 384,
|
| 20 |
+
"width": 384
|
| 21 |
}
|
| 22 |
}
|