Instructions to use Mxode/NanoExperiment-Models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Mxode/NanoExperiment-Models with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="Mxode/NanoExperiment-Models")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Mxode/NanoExperiment-Models", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -34,7 +34,7 @@ license: gpl-3.0
|
|
| 34 |
| Warmup Ratio | 0.01 |
|
| 35 |
| Decay Ratio | 0.35 |
|
| 36 |
| Decay Progress | Exponential |
|
| 37 |
-
| Min Decay LR | 0.01
|
| 38 |
| Optimizer | AdamW |
|
| 39 |
| Weight Decay | 0.1 |
|
| 40 |
| Max Grad Norm | 1.0 |
|
|
|
|
| 34 |
| Warmup Ratio | 0.01 |
|
| 35 |
| Decay Ratio | 0.35 |
|
| 36 |
| Decay Progress | Exponential |
|
| 37 |
+
| Min Decay LR | 0.01 * Max LR |
|
| 38 |
| Optimizer | AdamW |
|
| 39 |
| Weight Decay | 0.1 |
|
| 40 |
| Max Grad Norm | 1.0 |
|