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.4 series largely follows the V6.3 training recipe and uses the same training data, with a small number of multimodal samples added to preserve the multimodal capabilities of the Base models.
You can find the training data here:
Blossom-V6.3-SFT-Stage1 (1 epoch)、
Blossom-V6.3-SFT-Stage2 (3 epoch).
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.
Further technical details will be released in the future. The data is synthesized by the
🌸BlossomData framework.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3MODEL = "Azure99/Blossom-V6.4-9B"
4
5model = AutoModelForCausalLM.from_pretrained(MODEL)
6tokenizer = AutoTokenizer.from_pretrained(MODEL)
7
8messages = [
9 {"role": "user", "content": "北京有什么好吃的"}
10]
11
12inputs = tokenizer.apply_chat_template(
13 messages,
14 return_tensors="pt",
15 return_dict=True,
16).to(model.device)
17
18generated_ids = model.generate(**inputs, max_new_tokens=512)
19generated_ids = generated_ids[:, inputs["input_ids"].shape[-1]:]
20
21print(tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0])