Instructions to use Azure99/Blossom-V6.3-8B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Azure99/Blossom-V6.3-8B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Azure99/Blossom-V6.3-8B-GGUF", filename="blossom-v6.3-8b-bf16.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use Azure99/Blossom-V6.3-8B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use Azure99/Blossom-V6.3-8B-GGUF with Ollama:
ollama run hf.co/Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M
- Unsloth Studio new
How to use Azure99/Blossom-V6.3-8B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
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 Azure99/Blossom-V6.3-8B-GGUF to start chatting
Install Unsloth Studio (Windows)
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 Azure99/Blossom-V6.3-8B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Azure99/Blossom-V6.3-8B-GGUF to start chatting
- Docker Model Runner
How to use Azure99/Blossom-V6.3-8B-GGUF with Docker Model Runner:
docker model run hf.co/Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M
- Lemonade
How to use Azure99/Blossom-V6.3-8B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Azure99/Blossom-V6.3-8B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Blossom-V6.3-8B-GGUF-Q4_K_M
List all available models
lemonade list
BLOSSOM-V6.3-8B
Introduction
Blossom is a powerful open-source conversational large language model that provides reproducible post-training data, dedicated to delivering an open, powerful, and cost-effective locally accessible general-purpose model for everyone.
The Blossom-V6.3 series improves the repeated-output issue in V6.2, adds an MoE version of the 30B-A3B model, and enhances the overall capability of the 8B model.
| Chat Model | Resource | Base Model |
|---|---|---|
| Blossom-V6.3-36B | Demo GGUF Ollama | Seed-OSS-36B-Base |
| Blossom-V6.3-30B-A3B | Demo GGUF Ollama | Qwen3-30B-A3B-Base |
| Blossom-V6.3-14B | Demo GGUF Ollama | Qwen3-14B-Base |
| Blossom-V6.3-8B | Demo GGUF Ollama | Qwen3-8B-Base |
You can find the training data here: Blossom-V6.3-SFT-Stage1 (1 epoch)、Blossom-V6.3-SFT-Stage2 (3 epoch).
Data Synthesis Workflow Overview
Primarily employs three cost-effective models: Deepseek-V3.1, Gemini 2.5 Flash, and Qwen3-235B-A22B-Instruct-2507 (denoted as A, B, C)—to regenerate responses under different scenarios using tailored synthesis strategies.
For example:
- In objective scenarios like mathematics (where answers are unique), Model A first generates responses as a "teacher." If reference answers exist in the source data, Model B verifies the correctness of A's responses against them. If no reference answers exist, Model C generates a second response, and Model B checks consistency between A and C's outputs. Inconsistent responses are filtered out.
- For subjective scenarios, three models cross-evaluate each other. For instance, Models A and B generate responses to a question, and Model C evaluates which is better. The superior response may be retained as training data or used for preference data construction. To mitigate model bias, roles (respondent/evaluator) are randomly assigned to A, B, and C in each instance.
Additional rule-based filtering is applied, such as:
- N-Gram filtering to remove data with many repetitions.
- Discarding questions containing toxic content that triggers teacher model refusals.
Further technical details will be released in the future. The data is synthesized by the 🌸BlossomData framework.
Inference
from transformers import AutoModelForCausalLM, AutoTokenizer
MODEL = "Azure99/Blossom-V6.3-8B"
model = AutoModelForCausalLM.from_pretrained(MODEL)
tokenizer = AutoTokenizer.from_pretrained(MODEL)
messages = [
{"role": "user", "content": "北京有什么好吃的"}
]
formatted_input = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
input_ids = tokenizer([formatted_input], return_tensors="pt").to(model.device).input_ids
generated_ids = model.generate(input_ids, max_new_tokens=512)
generated_ids = [
output_ids[len(input_ids):] for input_ids, output_ids in zip(input_ids, generated_ids)
]
print(tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0])
- Downloads last month
- 110
Model tree for Azure99/Blossom-V6.3-8B-GGUF
Base model
Qwen/Qwen3-8B-Base