Instructions to use yanolja/YanoljaNEXT-Rosetta-4B-2511 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use yanolja/YanoljaNEXT-Rosetta-4B-2511 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="yanolja/YanoljaNEXT-Rosetta-4B-2511")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("yanolja/YanoljaNEXT-Rosetta-4B-2511") model = AutoModelForCausalLM.from_pretrained("yanolja/YanoljaNEXT-Rosetta-4B-2511", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 210 Bytes
0d8fad7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | {
"bos_token_id": 2,
"cache_implementation": "hybrid",
"do_sample": true,
"eos_token_id": [
1,
106
],
"pad_token_id": 0,
"top_k": 64,
"top_p": 0.95,
"transformers_version": "4.56.1"
}
|