Converted text models
Collection
Text models in various precisions/formats, many specific to image models. • 6 items • Updated • 7
output = llm(
"Once upon a time,",
max_tokens=512,
echo=True
)
print(output)This is a GGUF conversion of Google's T5 v1.1 XXL encoder model.
The weights can be used with ./llama-embedding or with the ComfyUI-GGUF custom node together with image generation models.
This is a non imatrix quant as llama.cpp doesn't support imatrix creation for T5 models at the time of writing. It's therefore recommended to use Q5_K_M or larger for the best results, although smaller models may also still provide decent results in resource constrained scenarios.
3-bit
4-bit
5-bit
6-bit
8-bit
16-bit
32-bit
Base model
google/t5-v1_1-xxl
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="city96/t5-v1_1-xxl-encoder-gguf", filename="", )