Stage 1 — General Instruction Training
The first stage performs the majority of the behavioral adaptation.
Approximate configuration:
Table with columns: Setting, Value| Setting | Value |
|---|
| Context length | 4,096 |
| Training budget | ~32M nominal tokens |
| Peak learning rate | 1.5e-5 |
| Scheduler | Cosine |
| Warmup | 3% |
| Weight decay | 0.1 |
| Training | Full-parameter |
| Loss | Assistant-only causal LM loss |
| Packing | Enabled |
This stage is responsible for most of the model's transition from a pretrained base model into a conversational assistant.
The target was broad usefulness rather than specialization.
Stage 2 — Long-Context Polish
The second stage is much smaller.
Its purpose is to polish behavior while exposing the instruction-tuned model to longer conversations.
Approximate configuration:
Table with columns: Setting, Value| Setting | Value |
|---|
| Context length | 8,192 |
| Training budget | ~6M nominal tokens |
| Peak learning rate | 4e-6 |
| Scheduler | Cosine |
| Warmup | 5% |
| Weight decay | 0.05 |
| Training | Full-parameter |
| Loss | Assistant-only causal LM loss |
Examples for this stage were preferentially selected from higher-quality and longer conversations.
This stage was intentionally kept small.
It was not meant to relearn assistant behavior from scratch, but rather to refine the Stage 1 checkpoint.
Approximate Training Budget
The complete v1.0 supervised post-training run targeted approximately:
Table with columns: Stage, Context, Nominal training tokens| Stage | Context | Nominal training tokens |
|---|
| Stage 1 | 4,096 | ~32M |
| Stage 2 | 8,192 | ~6M |
| Total | — | ~38M |
These numbers refer to the approximate training-token budget, not necessarily unique tokens.
The relatively small budget was intentional.
Training Data
MeetInstruct-0.6B-v1.0 uses a mixture of several instruction and conversational datasets.
The primary sources were:
HuggingFaceTB/smol-smoltalk
Used as the largest component of the general instruction mixture.
It provides broad assistant-oriented examples suitable for relatively small language models.
argilla/magpie-ultra-v1.0
Used for additional diversity across instructions, general questions, writing, coding, editing, and other assistant tasks.
Reasoning-oriented examples were filtered where possible.
HuggingFaceH4/no_robots
Used as a source of human-written instruction and response demonstrations.
This is valuable because much modern instruction data is synthetic.
Human-written examples provide a useful counterweight to model-generated response styles.
OpenAssistant/oasst2
Used primarily for genuine multi-turn conversation.
OASST2 is structured as a conversation tree rather than a simple prompt-response dataset.
For MeetInstruct, conversational branches were reconstructed from the message tree to produce usable multi-turn examples.
This helps teach behavior such as:
- following conversational context
- reacting to corrections
- continuing previous requests
- understanding follow-up instructions
- maintaining a coherent interaction across multiple turns
Dataset Mixture
The preprocessing pool used approximately:
Table with columns: Dataset, Target pool size| Dataset | Target pool size |
|---|
| Smol-SmolTalk | ~55,000 |
| Magpie Ultra | ~25,000 |
| No Robots | ~9,500 |
| OpenAssistant 2 | ~15,000 |
The full pool was larger than the actual amount of data consumed during training.
Training duration was controlled primarily by a token-derived step budget, rather than simply performing multiple epochs over the complete dataset.
This was done to make the amount of post-training more predictable.
Assistant-Only Loss
MeetInstruct-0.6B-v1.0 was trained using assistant-only supervision.
Conceptually:
System message → ignored by loss
User message → ignored by loss
Assistant response → trained
The user and system messages remain part of the model's context, but gradient loss is concentrated on the tokens the assistant is expected to generate.
This makes instruction tuning more directly about learning the desired response behavior.
Short Answers Are Intentionally Preserved
The training pipeline does not assume that longer responses are automatically better.
Very short examples are intentionally retained.
For example:
User: 17 * 24?
Assistant: 408
is a perfectly useful instruction-tuning example.
This matters for tasks such as:
- exact answers
- classification
- JSON generation
- extraction
- yes/no questions
- concise responses
- formatting-sensitive instructions
One of the goals of MeetInstruct is to avoid teaching the model that every request deserves a large answer.
Non-Reasoning Training
MeetInstruct-0.6B-v1.0 is not a reasoning-specialized model.
The training pipeline explicitly filters visible reasoning patterns such as:
as well as obvious chain-of-thought-style response structures.
The goal is not to prevent the model from solving problems.
It can still perform normal inference, calculations, explanations, and problem solving.
The distinction is that the model was not intentionally trained to make long visible reasoning traces part of its normal response format.
MeetInstruct v1.0 is intended to behave more like:
User:
Why does ice float?
Assistant:
Ice floats because its crystal structure makes solid water less dense than liquid water.
rather than automatically producing a long hidden-thought-style transcript before every answer.
Reasoning-specialized variants may be explored separately in the future.
Context Length
The underlying Qwen3-0.6B architecture supports substantially more context than the main instruction-training length.
MeetInstruct v1.0 was primarily post-trained at:
- 4K context during Stage 1
- 8K context during Stage 2
This was a deliberate compute tradeoff.
Training the entire post-training corpus at extremely long context lengths would have substantially increased compute cost while providing relatively little benefit for most everyday assistant conversations.
The smaller 8K second stage provides some longer-context exposure without making long sequences dominate the training budget.
Users should not interpret the base architecture's maximum supported context length as a guarantee that v1.0 will maintain equal quality across the entire window.
Intended Uses
MeetInstruct-0.6B-v1.0 is intended primarily for experimentation with small conversational language models.
Potential uses include:
- local chat assistants
- general instruction following
- rewriting
- summarization
- brainstorming
- basic coding help
- structured output
- lightweight question answering
- role prompting
- conversational agents
- small-model research
- post-training research
- further fine-tuning
Because of its relatively small parameter count, it may also be useful as a starting point for specialized downstream variants.
What v1.0 Is Not
MeetInstruct-0.6B-v1.0 is not intended to be:
- a dedicated reasoning model
- a math-specialized model
- a coding-specialized model
- a creative-writing-only model
- a benchmark-optimized checkpoint
- a replacement for large frontier models
The goal of this release is intentionally broader:
Make a small model into a competent, natural general assistant.
Example Usage
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
model_id = "Ma7ee7/MeetInstruct-0.6B-v1.0"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype="auto",
device_map="auto",
)
messages = [
{
"role": "user",
"content": "Explain what RAM does in a computer in two sentences.",
}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
)
inputs = tokenizer(
text,
return_tensors="pt",
).to(model.device)
with torch.no_grad():
output = model.generate(
**inputs,
max_new_tokens=256,
do_sample=True,
temperature=0.7,
top_p=0.8,
top_k=20,
repetition_penalty=1.05,
)
generated = output[0, inputs["input_ids"].shape[1]:]
print(
tokenizer.decode(
generated,
skip_special_tokens=True,
)
)
Suggested Generation Settings
A reasonable starting point for ordinary chat:
do_sample = True
temperature = 0.7
top_p = 0.8
top_k = 20
repetition_penalty = 1.05
For tasks where deterministic output matters more:
Generation settings are task-dependent, so these should be treated as starting points rather than universal defaults.
Limitations
MeetInstruct-0.6B-v1.0 is still a 0.6B parameter model.
Its size places significant limits on its capabilities.
It may struggle with:
- difficult reasoning
- advanced mathematics
- complex code generation
- obscure factual knowledge
- long-horizon planning
- highly nuanced instruction hierarchies
- very long conversations
- multilingual tasks
- hallucination resistance
- complex structured-output requirements
The model may confidently produce incorrect information.
It can also misunderstand prompts, lose track of conversational details, repeat itself, or produce responses that are less nuanced than larger models.
The objective of MeetInstruct is to make efficient use of a small model, not to pretend those size limitations do not exist.
About the MeetInstruct Series
MeetInstruct is an ongoing small-model post-training project by Ma7ee7.
The series explores how much general assistant quality can be achieved through:
- better instruction mixtures
- careful filtering
- efficient token budgets
- conversational training
- behavioral post-training
- context-length staging
- preference optimization
- improved evaluation
MeetInstruct-0.6B-v1.0 is the first completed release and establishes the baseline for the series.
Future versions may alter the training recipe substantially rather than simply adding more data.
Next: MeetInstruct-0.6B-v1.5
Development after v1.0 focuses on MeetInstruct-0.6B-v1.5.
The goal for v1.5 is not merely to train v1.0 for longer.
The post-training pipeline is being reconsidered from the ground up, including:
- dataset selection
- dataset proportions
- filtering
- learning rates
- context stages
- training structure
- behavioral evaluation
- preference optimization
- conversational quality
The central goal remains the same:
A small, general-purpose instruct/chat model that communicates naturally and flexibly.
Particular attention is being given to qualities such as:
- natural conversation
- flexible tone
- creativity
- wording
- nuance
- judgment
- conversational awareness
- avoiding robotic response patterns
v1.5 is intended to improve the behavioral quality of the series rather than simply chase higher benchmark scores.
Base Model
MeetInstruct-0.6B-v1.0 is derived from:
Qwen/Qwen3-0.6B-Base
Please refer to the original Qwen3 model card for details about the base architecture, pretraining, tokenizer, licensing, and base-model limitations.
License
Apache License 2.0
Use of the model should also respect the licenses and terms associated with the original base model and the datasets used during post-training.
Disclaimer
MeetInstruct-0.6B-v1.0 is an experimental language model.
Its outputs may be incorrect, misleading, biased, inappropriate, or otherwise unreliable.
Important information should be independently verified before being relied upon.