CohereLabs/aya_dataset
Viewer • Updated • 206k • 26.1k • 368
How to use OpenWeightsAI/Vynis-0.2-8B-Instant with Transformers:
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("OpenWeightsAI/Vynis-0.2-8B-Instant", device_map="auto")GPLM-0.2-8B-Instant is an instruction-tuned language model based on Qwen2.5-7B-Instruct.
The model was fine-tuned using:
GPLM-0.2-8B-Instant is intended for:
The model may generate incorrect, outdated, or misleading information. Generated content should be reviewed before being used in important or safety-critical applications.
from transformers import AutoTokenizer, AutoModelForCausalLM
model_id = "OpenWeightsAI/gplm-0.2-8B-instant"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)