Toy Models to Study
Collection
9 items • Updated • 2
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("nilq/python-mistral-1L-mini")
model = AutoModelForCausalLM.from_pretrained("nilq/python-mistral-1L-mini")This model is a fine-tuned version of on an unknown dataset.
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="nilq/python-mistral-1L-mini")