Quantifying the Carbon Emissions of Machine Learning
Paper
•
1910.09700
•
Published
•
29
Based on Qwen3 Embedding 0.6 finetuned on Oxford English Dictionary for word and sentence relationship association.
Experimental model not for production use.
Model is intented to be used in embedding and searching for words and short phrases
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
Use the code below to get started with the model.
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("npc0/Qwen3-Embedding-0.6B-OED")
sentences = [
"The weather is lovely today.",
"It's so sunny outside!",
"He drove to the stadium."
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]
[More Information Needed]
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).