Instructions to use Ma7ee7/MeetInstruct-0.6B-v1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Ma7ee7/MeetInstruct-0.6B-v1.0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Ma7ee7/MeetInstruct-0.6B-v1.0") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Ma7ee7/MeetInstruct-0.6B-v1.0") model = AutoModelForCausalLM.from_pretrained("Ma7ee7/MeetInstruct-0.6B-v1.0", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Ma7ee7/MeetInstruct-0.6B-v1.0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Ma7ee7/MeetInstruct-0.6B-v1.0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Ma7ee7/MeetInstruct-0.6B-v1.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Ma7ee7/MeetInstruct-0.6B-v1.0
- SGLang
How to use Ma7ee7/MeetInstruct-0.6B-v1.0 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Ma7ee7/MeetInstruct-0.6B-v1.0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Ma7ee7/MeetInstruct-0.6B-v1.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Ma7ee7/MeetInstruct-0.6B-v1.0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Ma7ee7/MeetInstruct-0.6B-v1.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Ma7ee7/MeetInstruct-0.6B-v1.0 with Docker Model Runner:
docker model run hf.co/Ma7ee7/MeetInstruct-0.6B-v1.0
- MeetInstruct-0.6B-v1.0
- What MeetInstruct Is Trying to Be
- Model Details
- Training Philosophy
- Post-Training Overview
- Stage 2 — Long-Context Polish
- Approximate Training Budget
- Training Data
- Dataset Mixture
- Assistant-Only Loss
- Short Answers Are Intentionally Preserved
- Non-Reasoning Training
- Context Length
- Intended Uses
- What v1.0 Is Not
- Example Usage
- Suggested Generation Settings
- Limitations
- About the MeetInstruct Series
- Next: MeetInstruct-0.6B-v1.5
- Base Model
- License
- Disclaimer
MeetInstruct-0.6B-v1.0
MeetInstruct-0.6B-v1.0 is the first finished release in the MeetInstruct series of small, general-purpose instruction-tuned language models by Ma7ee7.
It is based on:
Qwen/Qwen3-0.6B-Base
Hugging Face repository:
Ma7ee7/MeetInstruct-0.6B-v1.0
MeetInstruct is an experiment in how much useful assistant behavior can be extracted from a relatively small pretrained language model through carefully designed post-training.
The goal is not to turn a 0.6B model into a benchmark-specialized reasoning system.
The goal is to make a small model that is simply pleasant and useful to interact with.
What MeetInstruct Is Trying to Be
MeetInstruct is intended to be a general-purpose instruct/chat model.
The series focuses on behaviors such as:
- natural conversation
- flexible tone
- good wording
- concise answers when appropriate
- detailed answers when appropriate
- rewriting and editing
- brainstorming
- creativity
- general question answering
- instruction following
- formatting compliance
- conversational continuity
- lightweight coding assistance
- useful judgment about how to answer a request
A major inspiration for the series is the kind of behavioral quality commonly associated with models such as GPT-4.5:
natural language, flexible tone, creativity, nuance, good wording, and responses that feel less mechanical.
This does not mean MeetInstruct attempts to reproduce GPT-4.5's capabilities.
At 0.6B parameters, the difference in raw capability is enormous.
The inspiration is instead about the direction of the post-training: making the model communicate well rather than optimizing it around one narrow benchmark or task family.
Model Details
| Property | Value |
|---|---|
| Model | Ma7ee7/MeetInstruct-0.6B-v1.0 |
| Series | MeetInstruct |
| Version | v1.0 |
| Base model | Qwen/Qwen3-0.6B-Base |
| Parameters | ~0.6B |
| Model type | General-purpose instruct/chat model |
| Training method | Full-parameter supervised fine-tuning |
| Primary SFT context | 4,096 tokens |
| Long-context polish | 8,192 tokens |
| Explicit reasoning training | No |
| Visible chain-of-thought training | No |
| DPO / preference optimization | No |
| Primary language | English |
Training Philosophy
MeetInstruct-0.6B-v1.0 was built around a relatively simple idea:
The pretrained model already knows language. Post-training should primarily teach it how to behave.
Instead of performing an extremely large instruction-tuning run, v1.0 uses a relatively small and targeted post-training budget.
The intention was to move the base model toward assistant behavior without unnecessarily overwriting the representations learned during pretraining.
The pipeline therefore prioritizes:
- diverse instruction data
- conversational examples
- human-written demonstrations
- useful synthetic data
- assistant-only supervision
- a limited number of post-training tokens
- low learning rates
- preservation of short and direct answers
- multi-turn conversation
- avoiding explicit chain-of-thought behavior
Post-Training Overview
MeetInstruct-0.6B-v1.0 uses a two-stage supervised fine-tuning pipeline.
Stage 1 — General Instruction Training
The first stage performs the majority of the behavioral adaptation.
Approximate configuration:
| 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:
| 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:
| 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:
| 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:
<think>
...
</think>
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:
do_sample = False
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.
- Downloads last month
- 169