How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="dispatchAI/EmbeddingGemma-300M-mobile",
	filename="model.gguf",
)
output = llm(
	"Once upon a time,",
	max_tokens=512,
	echo=True
)
print(output)

EmbeddingGemma-300M-mobile

πŸ”’ Embedding β€” This is not a chat model.

Embedding model β€” use for vector embeddings, not chat. Use sentence-transformers or similar.

Model Details

Attribute Value
Base Model google/embeddinggemma-300m
Type EMBEDDING
License gemma

Usage

from sentence_transformers import SentenceTransformer; model = SentenceTransformer('dispatchAI/EmbeddingGemma-300M-mobile')

πŸš€ dispatchAI

Downloads last month
112
GGUF
Model size
0.3B params
Architecture
gemma-embedding
Hardware compatibility
Log In to add your hardware

We're not able to determine the quantization variants.

Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Space using dispatchAI/EmbeddingGemma-300M-mobile 1

Collections including dispatchAI/EmbeddingGemma-300M-mobile