1,443 questions
0
votes
0
answers
258
views
How to fix EOF Server Ollama Error when embedding
I built the RAG system in Laravel with Neuron AI framework. I tried to store docs to the vectorstore but I got error:
[2025-12-04 06:49:45] local.ERROR: Server error: `POST http://localhost:11434/api/...
2
votes
3
answers
88
views
Loading many PyTorch .pt files from Google Drive in Google Colab is extremely slow
I am storing my ESM protein embeddings as individual .pt files in Google Drive (about 46,000 files, total size ~182 MB).
When I try to load them in Google Colab, the process is extremely slow (only ~2 ...
3
votes
2
answers
206
views
Multimodal embedding requires video first, then image - why?
I am working with OmniEmbed model (https://huggingface.co/Tevatron/OmniEmbed-v0.1), which is built on Qwen2.5 7B. My goal is to get a multimodal embedding for images and videos. I have the following ...
-1
votes
1
answer
70
views
How to reconstruct sentences from mean-pooled embeddings (embedding inversion) [closed]
I’m working on a research problem where I want to reconstruct or paraphrase sentences starting from synthetic embeddings.
The embeddings are global (mean-pooled), not token-level, so they lose ...
1
vote
2
answers
455
views
How can I match the token count used by BGE-M3 embedding model before embedding?
For my particular project, it would be very helpful to know how many tokens the BGE-M3 embedding model would break a string down into before I embed the text. I could embed the string and count the ...
0
votes
0
answers
54
views
itext 5.5 add mp4 video
Is it possible to add mp4 videos to itet 5.5 and let them play upon showing?
What I tried:
final PdfPCell cell = new PdfPCell();
final Chunk chunk = new Chunk();
chunk.setAnnotation(PdfAnnotation
...
1
vote
1
answer
210
views
Rapidfuzz giving no matches but Fuzzywuzzy does
I have been developing a matching system which matches the rows of the client and our central database depending on similarity. I have used a hybrid approach where I needed to somehow map the Company, ...
0
votes
0
answers
75
views
Why does adding token and positional embeddings in transformers work?
In transformer models, I've noticed that token embeddings and positional embeddings are added together before being passed into the attention layers:
import torch
import torch.nn as nn
class ...
0
votes
0
answers
145
views
Is there a difference of how to use OpenAI Azure API KEY vs actual openAI key?
I want to use open AI to get embeddings for a recommendation system.
I used my credentials everything worked. Now I need to use my company's credentials to get embeddings for the whole dataset, ...
0
votes
0
answers
58
views
How Can I Make Vimeo's Javascript Player API iframe body Fill instead of Contain?
I want to embed an iframe that contains a vimeo video inside a container div and give that div any ole aspect-ratio and just have my vimeo video conform to that using something like object-fit: cover (...
0
votes
0
answers
160
views
Embed Android.Views.View in .net maui
I'm migrating a project from android native to .net maui, by replacing native forms with embedded maui views (following the embedding method described in this MSDN page)
However, now I'm facing a ...
0
votes
0
answers
66
views
Cannot read properties of undefined (reading 'numDimensions')
I am getting error:
Cannot read properties of undefined (reading 'numDimensions')
When i am trying to work with OllamaEmbeddings getting the above error:
import { OllamaEmbeddings } from "@...
0
votes
0
answers
508
views
Qdrant 400 Bad Request Error When Inserting Multi-Vector Embeddings with Larger Batch Sizes via API
Context
I am working on a semantic search application and using Qdrant to store three types of embeddings per document:
Dense embeddings (from OpenAI)
Sparse embeddings (from Qdrant/BM25)
Rerank ...
0
votes
0
answers
62
views
Node2vec embeddings for Fraud Detection?
I tried to improve XGBoost by stacking node2vec embeddings to the original features for fraud detection. In literature and papers this is frequently discussed as a good method to enhance prediction ...
1
vote
1
answer
185
views
Spring-AI embedding, cannot search result by method 'similaritySearching' [closed]
I'm using Spring ai to build an app, the stack I chose is jdk 21, spring-boot 3.3.11 ,spring-ai 1.0.0M6. And for both embedding and chat models, I chose to use Ollama, thus the spring-ai-ollama-spring-...