Hello! I am calling both methods to compare the embeddings they return.
ll = ollama.embeddings(model='llama3.2',
prompt = 'The sky is blue because of rayleigh scattering'
)
llm = dict(ll)
llm['embedding']
ll = ollama.embed(model='llama3.2',
input = 'The sky is blue because of rayleigh scattering'
)
llm = dict(ll)
llm['embeddings'][0]
They return different embeddings for the same model. Why is that?
Thank you in advance