Translation
Transformers
Safetensors
Korean
English
Vietnamese
llama
text-generation
text-generation-inference
Instructions to use DMTLabs-AI/DMTLLM-Translation-Research with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DMTLabs-AI/DMTLLM-Translation-Research 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="DMTLabs-AI/DMTLLM-Translation-Research")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("DMTLabs-AI/DMTLLM-Translation-Research") model = AutoModelForCausalLM.from_pretrained("DMTLabs-AI/DMTLLM-Translation-Research", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -302,6 +302,4 @@ This model should not be used for safety-critical or other high-stakes applicati
|
|
| 302 |
|
| 303 |
## License
|
| 304 |
|
| 305 |
-
The released model weights and accompanying materials are provided under the **Apache License 2.0**
|
| 306 |
-
|
| 307 |
-
Users are responsible for ensuring that their use of the model complies with applicable laws, regulations, and third-party rights.
|
|
|
|
| 302 |
|
| 303 |
## License
|
| 304 |
|
| 305 |
+
The released model weights and accompanying materials are provided under the **Apache License 2.0**.
|
|
|
|
|
|