Instructions to use DeepLearner101/ResNet50_FGSM_FT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DeepLearner101/ResNet50_FGSM_FT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="DeepLearner101/ResNet50_FGSM_FT") 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("DeepLearner101/ResNet50_FGSM_FT") model = AutoModelForImageClassification.from_pretrained("DeepLearner101/ResNet50_FGSM_FT") - Notebooks
- Google Colab
- Kaggle
Commit ·
72df4a3
1
Parent(s): df4edd0
Upload best_hyperparameters.json
Browse files
best_hyperparameters.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"lr": 0.00042840029987674996, "momentum": 0.899203238087435, "weight_decay": 2.830545737226652e-05, "epochs": 10, "epsilon_range": [0.001, 0.25, 0.005]}
|