Bobbie loses marginally on standard benchmarks but dramatically outperforms on long-context retrieval (RULER). At 32k context, Bobbie is also 36% faster than Llama-3 due to its BiGLU and windowed attention strategy. 5. How to Use Bobbie-Model The model is available on Hugging Face as bobbie-collective/bobbie-7b-base and bobbie-7b-instruct . Transformers Example from transformers import AutoTokenizer, AutoModelForCausalLM import torch model_name = "bobbie-collective/bobbie-7b-instruct" tokenizer = AutoTokenizer.from_pretrained(model_name) model = AutoModelForCausalLM.from_pretrained( model_name, torch_dtype=torch.bfloat16, device_map="auto" )
If you’ve been following the open-source LLM space, you’ve likely memorized the specs of Llama 3, Mixtral, and Qwen. But a new contender has been quietly gaining traction in the "small model" category: .
In this post, we’ll strip down the architecture, analyze its training data strategy, and run benchmarks against comparable 7B models. At its core, Bobbie-Model is a 7-billion-parameter dense transformer developed by an independent research collective. Unlike models that aim to brute-force performance through massive parameter counts or MOE sparsity, Bobbie optimizes for the "sweet spot" of the compute/performance curve: running comfortably on a single 24GB GPU (RTX 3090/4090 or A10G). bobbie-model
The research collective has hinted at a 13B version with Mixture of Depths (MoD) later this year. Until then, Bobbie-7B deserves a spot in your evaluation pipeline.
| Stage | Dataset | Tokens | Purpose | |-------|---------|--------|---------| | 1 | RedPajama (v2) | 1.2T | Base language modeling | | 2 | SlimPajama + CodeAlpaca | 400B | Code & reasoning | | 3 | Synthetic multi-turn chat | 50B | Instruction following | How to Use Bobbie-Model The model is available
messages = [ "role": "user", "content": "Summarize this 20k token document..." ] inputs = tokenizer.apply_chat_template(messages, return_tensors="pt").to(model.device) output = model.generate(inputs, max_new_tokens=512, temperature=0.7) print(tokenizer.decode(output[0][inputs.shape[1]:])) Bobbie works out-of-the-box with vLLM 0.6.0+:
Bobbie is not just another incremental fine-tune. It represents a thoughtful experiment in . In this post, we’ll strip down the architecture,
They explicitly filtered out any data containing eval benchmark examples (MMLU, GSM8K, HumanEval) using 13-gram overlap detection. This means Bobbie's benchmarks are likely not contaminated. 4. Performance Benchmarks We ran Bobbie-7B-Instruct against Llama-3-8B-Instruct and Mistral-7B-v0.3 on an RTX 4090.