Meet7
Collection
A Collection of Efficiently Fine-Tuned Models. • 6 items • Updated
How to use Ma7ee7/Meet7_0.6b with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="Ma7ee7/Meet7_0.6b")
messages = [
{"role": "user", "content": "Who are you?"},
]
pipe(messages) # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Ma7ee7/Meet7_0.6b")
model = AutoModelForCausalLM.from_pretrained("Ma7ee7/Meet7_0.6b")
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]:]))How to use Ma7ee7/Meet7_0.6b with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Ma7ee7/Meet7_0.6b"
# 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/Meet7_0.6b",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/Ma7ee7/Meet7_0.6b
How to use Ma7ee7/Meet7_0.6b with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "Ma7ee7/Meet7_0.6b" \
--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/Meet7_0.6b",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'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/Meet7_0.6b" \
--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/Meet7_0.6b",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'How to use Ma7ee7/Meet7_0.6b with Unsloth Studio:
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Ma7ee7/Meet7_0.6b to start chatting
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Ma7ee7/Meet7_0.6b to start chatting
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Ma7ee7/Meet7_0.6b to start chatting
pip install unsloth
from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
model_name="Ma7ee7/Meet7_0.6b",
max_seq_length=2048,
)How to use Ma7ee7/Meet7_0.6b with Docker Model Runner:
docker model run hf.co/Ma7ee7/Meet7_0.6b
A general-purpose Non-Reasoning LoRA fine-tune of Qwen3-0.6B, trained in under 10 minutes on just 600 samples.
Scores are acc_norm.
| Task | Shot | Qwen3-0.6B | Meet7 0.6B | Δ |
|---|---|---|---|---|
| BoolQ | 0-shot | 0.3798 | 0.5554 | +17.56% |
| ARC Easy | 3-shot | 0.3636 | 0.4394 | +07.58% |
| ARC Challenge | 3-shot | 0.2952 | 0.3456 | +05.04% |
| HellaSwag | 3-shot | 0.3956 | 0.4323 | +03.67% |
| PIQA | 0-shot | 0.6338 | 0.6583 | +02.45% |
| Winogrande | 0-shot | 0.5225 | 0.5201 | −00.24% |
| Developed by | Ma7ee7 |
| License | Apache-2.0 |
| Base model | unsloth/Qwen3-0.6B-unsloth-bnb-4bit |
| Training time | < 10 minutes |
| Training samples | 600 |
Trained 2x faster with Unsloth and Hugging Face TRL.
Base model
Qwen/Qwen3-0.6B-Base