BabyLM
Collection
UT Austin's model submissions to BabyLM challenge. • 7 items • Updated • 1
How to use venkatasg/lil-bevo-x with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="venkatasg/lil-bevo-x") # Load model directly
from transformers import AutoTokenizer, AutoModelForMaskedLM
tokenizer = AutoTokenizer.from_pretrained("venkatasg/lil-bevo-x")
model = AutoModelForMaskedLM.from_pretrained("venkatasg/lil-bevo-x")Lil-Bevo-X is UT Austin's submission to the BabyLM challenge, specifically the strict track.
This README will be updated with more details soon.