[PR #14167] [CLOSED] Add Qwen3.5 Dense and MOE [Vision] #40421

Closed
opened 2026-04-23 01:19:07 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/14167
Author: @TommyBoiss
Created: 2/9/2026
Status: Closed

Base: mainHead: qwen3.5


📝 Commits (5)

📊 Changes

22 files changed (+5851 additions, -1 deletions)

View changed files

📝 convert/convert.go (+4 -0)
convert/convert_qwen35.go (+836 -0)
📝 convert/tokenizer.go (+2 -0)
📝 fs/ggml/ggml.go (+2 -0)
📝 model/models/models.go (+2 -0)
model/models/qwen35/attention.go (+82 -0)
model/models/qwen35/cache.go (+596 -0)
model/models/qwen35/checkpoints.go (+498 -0)
model/models/qwen35/deltanet.go (+438 -0)
model/models/qwen35/imageprocessor.go (+171 -0)
model/models/qwen35/model.go (+447 -0)
model/models/qwen35/model_vision.go (+243 -0)
model/models/qwen35moe/attention.go (+81 -0)
model/models/qwen35moe/cache.go (+596 -0)
model/models/qwen35moe/checkpoints.go (+498 -0)
model/models/qwen35moe/deltanet.go (+438 -0)
model/models/qwen35moe/imageprocessor.go (+171 -0)
model/models/qwen35moe/model.go (+498 -0)
model/models/qwen35moe/model_vision.go (+243 -0)
📝 model/parsers/parsers.go (+2 -0)

...and 2 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ollama/ollama/pull/14167 **Author:** [@TommyBoiss](https://github.com/TommyBoiss) **Created:** 2/9/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `qwen3.5` --- ### 📝 Commits (5) - [`cc669fe`](https://github.com/ollama/ollama/commit/cc669fe752ff730f9d9bf38529f8fde015d0479b) Add Qwen3.5 Dense and MOE - [`80e6bb7`](https://github.com/ollama/ollama/commit/80e6bb709f5617a2b36fc99412f1213ae78a9ec8) Housekeeping - [`0b08438`](https://github.com/ollama/ollama/commit/0b0843883071e9289ab4fb28a819b3bf5eaa23cd) Add Vision support and clean up some things - [`5254442`](https://github.com/ollama/ollama/commit/5254442d6609b07f230d73ddb75beb1d8107ca97) Chore - [`b37869b`](https://github.com/ollama/ollama/commit/b37869ba028c37636ab3c815ca105f43ed893cc9) GoFMT ### 📊 Changes **22 files changed** (+5851 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `convert/convert.go` (+4 -0) ➕ `convert/convert_qwen35.go` (+836 -0) 📝 `convert/tokenizer.go` (+2 -0) 📝 `fs/ggml/ggml.go` (+2 -0) 📝 `model/models/models.go` (+2 -0) ➕ `model/models/qwen35/attention.go` (+82 -0) ➕ `model/models/qwen35/cache.go` (+596 -0) ➕ `model/models/qwen35/checkpoints.go` (+498 -0) ➕ `model/models/qwen35/deltanet.go` (+438 -0) ➕ `model/models/qwen35/imageprocessor.go` (+171 -0) ➕ `model/models/qwen35/model.go` (+447 -0) ➕ `model/models/qwen35/model_vision.go` (+243 -0) ➕ `model/models/qwen35moe/attention.go` (+81 -0) ➕ `model/models/qwen35moe/cache.go` (+596 -0) ➕ `model/models/qwen35moe/checkpoints.go` (+498 -0) ➕ `model/models/qwen35moe/deltanet.go` (+438 -0) ➕ `model/models/qwen35moe/imageprocessor.go` (+171 -0) ➕ `model/models/qwen35moe/model.go` (+498 -0) ➕ `model/models/qwen35moe/model_vision.go` (+243 -0) 📝 `model/parsers/parsers.go` (+2 -0) _...and 2 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-23 01:19:07 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#40421