Instructions to use MVRL/ecoclim with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MVRL/ecoclim with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("MVRL/ecoclim", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Upload config
Browse files- config.json +7 -0
config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"depth": 4,
|
| 3 |
+
"num_classes": 0,
|
| 4 |
+
"num_filts": 512,
|
| 5 |
+
"num_inputs": 20,
|
| 6 |
+
"transformers_version": "4.45.2"
|
| 7 |
+
}
|