Issue: Low Recall Score in Vector-Graph RAG Reproduction with Qwen3-0.6B After Fixing Embedding Type Error
Description
When reproducing the vector-graph RAG pipeline with the Qwen3-0.6B model, I encountered a dtype-related error in the embedding output. The pipeline would crash at the line:
return embeddings.cpu().numpy()
---
```markdown
## Issue:使用 Qwen3-0.6B 复现 Vector-Graph RAG 时,修改 Embedding 类型后召回分数极低
### 问题描述
在使用 `Qwen3-0.6B` 模型复现 `vector-graph` RAG 流程时,嵌入向量转换环节会报错,原代码为:
```python
return embeddings.cpu().numpy()
<img width="418" height="438" alt="Image" src="https://github.com/user-attachments/assets/c340dcec-465c-4102-9639-4a90d37d8194" />
Graph RAG recall@10:0.5788 ; Naive RAG recall@10:0.3502;
Issue: Low Recall Score in Vector-Graph RAG Reproduction with Qwen3-0.6B After Fixing Embedding Type Error
Description
When reproducing the
vector-graphRAG pipeline with theQwen3-0.6Bmodel, I encountered a dtype-related error in the embedding output. The pipeline would crash at the line: