Views
No views yet
Qwen/Qwen3.5-0.8B (0.8B params,
Apache 2.0), developed by a team from Helios as part of the Arche model
family. It is meant to serve as the general chat / quick-response layer inside
ELYSIUM, a local AI agent.transformers.| Parameter | Value |
|---|---|
r | 16 |
lora_alpha | 16 |
lora_dropout | 0.0 |
bias | none |
| precision | bf16 (no quantization) |
target_modules | q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj |
mlabonne/FineTome-100k
(general instruction / chat tuning).enable_thinking=False) for low latency. Training code and the identity
generator live in the GitHub repo: https://github.com/Helios-4UQwen/Qwen3.5-0.8B natively supports up to 262,144 tokens of context,
Spark itself was not trained or validated on long sequences. Do not assume
Spark inherits the base model's long-context behavior — keep inputs near the
512-token training length for expected behavior.max_length rename,
loss_type="nll" requirement, ~248k-vocab OOM, Colab session-time cap).No formal benchmark evaluation has been run on Spark. Performance claims are unverified; the base model's published scores do not transfer by assumption.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "Helios4U/spark-qwen3.5-0.8b"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto", device_map="auto")
6
7messages = [
8 {"role": "system", "content": "You are Spark, a helpful, honest, and concise AI assistant."},
9 {"role": "user", "content": "Who are you?"},
10]
11
12# Non-thinking mode (Spark was trained this way for low latency)
13prompt = tokenizer.apply_chat_template(
14 messages, tokenize=False, add_generation_prompt=True, enable_thinking=False
15)
16inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
17outputs = model.generate(**inputs, max_new_tokens=256)
18print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))Qwen/Qwen3.5-0.8B, released under Apache 2.0.
Spark is distributed under the same Apache 2.0 license.