Toy Models to Study
Collection
9 items • Updated • 2
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("nilq/baby-python-mistral-1L-tiny-lua-ft")
model = AutoModelForCausalLM.from_pretrained("nilq/baby-python-mistral-1L-tiny-lua-ft")This model is a fine-tuned version of nilq/baby-python-mistral-1L-tiny-base on the nilq/small-lua-stack dataset. This is the Lua model in the paper Tracking Universal Features Through Fine-Tuning and Model Merging. It achieves the following results on the evaluation set:
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/baby-python-mistral-1L-tiny-lua-ft")