[PR #12301] [MERGED] feat: qwen3 embed #12513

Closed
opened 2025-11-12 16:37:42 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/12301
Author: @mxyng
Created: 9/16/2025
Status: Merged
Merged: 9/18/2025
Merged by: @mxyng

Base: mainHead: mxyng/qwen3embed


📝 Commits (4)

📊 Changes

8 files changed (+192 additions, -23 deletions)

View changed files

📝 ml/nn/pooling/pooling.go (+18 -12)
ml/nn/pooling/pooling_test.go (+79 -0)
📝 model/model.go (+2 -2)
📝 model/models/bert/embed.go (+1 -1)
📝 model/models/gemma3/embed.go (+1 -1)
model/models/qwen3/embed.go (+73 -0)
📝 model/models/qwen3/model.go (+15 -4)
📝 runner/ollamarunner/runner.go (+3 -3)

📄 Description

this change implements qwen3 embedding, specifically these


🔄 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/12301 **Author:** [@mxyng](https://github.com/mxyng) **Created:** 9/16/2025 **Status:** ✅ Merged **Merged:** 9/18/2025 **Merged by:** [@mxyng](https://github.com/mxyng) **Base:** `main` ← **Head:** `mxyng/qwen3embed` --- ### 📝 Commits (4) - [`7cf4a42`](https://github.com/ollama/ollama/commit/7cf4a4241cd6eacb96b3573cac7ac352395e28a2) cleanup - [`f5cb1c2`](https://github.com/ollama/ollama/commit/f5cb1c294860f691e2086880559ab6a513fcb659) use pooling.TypeNone - [`2cd25c9`](https://github.com/ollama/ollama/commit/2cd25c9e91f204cafa86b170e9c454afab68b042) pooling test - [`508dadb`](https://github.com/ollama/ollama/commit/508dadb77c133765aa064f1ebab100911f935a0e) qwen3 embed ### 📊 Changes **8 files changed** (+192 additions, -23 deletions) <details> <summary>View changed files</summary> 📝 `ml/nn/pooling/pooling.go` (+18 -12) ➕ `ml/nn/pooling/pooling_test.go` (+79 -0) 📝 `model/model.go` (+2 -2) 📝 `model/models/bert/embed.go` (+1 -1) 📝 `model/models/gemma3/embed.go` (+1 -1) ➕ `model/models/qwen3/embed.go` (+73 -0) 📝 `model/models/qwen3/model.go` (+15 -4) 📝 `runner/ollamarunner/runner.go` (+3 -3) </details> ### 📄 Description this change implements qwen3 embedding, specifically these - https://huggingface.co/Qwen/Qwen3-Embedding-0.6B-GGUF - https://huggingface.co/Qwen/Qwen3-Embedding-4B-GGUF - https://huggingface.co/Qwen/Qwen3-Embedding-8B-GGUF --- <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 2025-11-12 16:37:42 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama-ollama#12513