Instructions to use DeskHyper/testingmodel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DeskHyper/testingmodel with Transformers:
# Load model directly from transformers import resnet50 model = resnet50.from_pretrained("DeskHyper/testingmodel", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update config.json
Browse files- config.json +9 -2
config.json
CHANGED
|
@@ -1,3 +1,10 @@
|
|
| 1 |
{
|
| 2 |
-
"
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"ResNet"
|
| 4 |
+
],
|
| 5 |
+
"model_type": "ResNet",
|
| 6 |
+
"num_classes": 10,
|
| 7 |
+
"num_layers": 18,
|
| 8 |
+
"hidden_size": 64,
|
| 9 |
+
"dropout_prob": 0.5
|
| 10 |
+
}
|