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
|
@@ -1,5 +1,12 @@
|
|
| 1 |
---
|
| 2 |
license: gpl-3.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
# **NanoTranslator-Experimental**
|
| 5 |
|
|
@@ -198,5 +205,4 @@ license: gpl-3.0
|
|
| 198 |
<td></td>
|
| 199 |
</tr>
|
| 200 |
</tbody>
|
| 201 |
-
</table>
|
| 202 |
-
|
|
|
|
| 1 |
---
|
| 2 |
license: gpl-3.0
|
| 3 |
+
datasets:
|
| 4 |
+
- Mxode/BiST
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
- zh
|
| 8 |
+
pipeline_tag: translation
|
| 9 |
+
library_name: transformers
|
| 10 |
---
|
| 11 |
# **NanoTranslator-Experimental**
|
| 12 |
|
|
|
|
| 205 |
<td></td>
|
| 206 |
</tr>
|
| 207 |
</tbody>
|
| 208 |
+
</table>
|
|
|