Views
No views yet
The vast blue sky stretches endlessly above, filled with fluffy white clouds that drift lazily across its canvas.
Qwen2.5-1.5B-Instruct weights transplanted into an OpenMythos-compatible shell.
1Qwen layers 0-13 -> OpenMythos prelude
2Qwen layer 14 -> OpenMythos recurrent slot, patched to act like a normal Qwen-style block
3Qwen layers 15-27 -> OpenMythos coda
4Qwen embedding/head -> OpenMythos embedding/head path
5
6
7This checkpoint is not the final compressed recurrent OpenMythos model.
8The true compressed/recurrent OpenMythos student is a separate ongoing experiment that requires distillation.
9
10Installation
11
12pip install -U torch transformers accelerate safetensors sentencepiece
13
14python infer_saved_openmythos_qwen.py \
15 --ckpt_dir qwen2_5_1_5b_openmythos_full_shell \
16 --prompt "Write a python script of the GPT architecture" \
17 --max_new_tokens 100
18
19
20Simple generation -
21
22[prompt] What can you tell me about Qwen?
23
24[output]
25Qwen is an AI language model created by Alibaba Cloud.
26It is designed to be a general-purpose language model that can be used for a wide range of tasks, including text generation, question answering, and more.
27Qwen is trained on a large corpus of text data, and it uses advanced natural language processing techniques to understand and generate human-like language.
28It is available as a cloud service and can be used by developers and businesses to build their own AI-powered applications.
29
30Limitations
31
32This model is experimental. It behaves like qwen2.5-1.5b simply due to the recurrent layer not looping thus acting as the regular layer.
33
34Attribution
35
36This checkpoint is based on Qwen2.5-1.5B-Instruct by the Qwen team.
37
38Base model:
39
40Qwen/Qwen2.5-1.5B-Instruct
41
42This repository adds an experimental OpenMythos-compatible shell, compatibility patches, transplant logic, and inference scripts.
43
44License
45
46This repository is released under Apache-2.0, following the upstream Qwen2.5-1.5B-Instruct license.
47
48Please follow the terms of the upstream Qwen model license and include appropriate attribution when redistributing or modifying this work.