HuggingFaceFW/fineweb_edu_100BT-shuffled
Viewer • Updated • 102M • 4.82k • 5
Small LLaMA-architecture causal language model, ~10.9M parameters.
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("VertexResearch/Vertex-0.1-10M-base")
tokenizer = AutoTokenizer.from_pretrained("VertexResearch/Vertex-0.1-10M-base")
inputs = tokenizer("Once upon a time", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=50)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
This is a very small model (~10.9M params) trained on a small dataset. Expect limited coherence, knowledge, and generalization compared to larger models. Intended for experimentation, education, and low-resource testing, not production use.