Image-Text-to-Text
Transformers
Safetensors
English
florence2
art
custom_code
8-bit precision
bitsandbytes
How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "John6666/gokaygokay-Florence-2-SD3-Captioner-8bit"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "John6666/gokaygokay-Florence-2-SD3-Captioner-8bit",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Use Docker
docker model run hf.co/John6666/gokaygokay-Florence-2-SD3-Captioner-8bit
Quick Links

Original model is here. Tagger for local environment is here.

# recipe
from transformers import AutoModelForCausalLM, AutoProcessor, BitsAndBytesConfig
import transformers
import torch
import json

model_id = 'gokaygokay/Florence-2-SD3-Captioner'
save_path = 'gokaygokay-Florence-2-SD3-Captioner-8bit'

processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id, 
    trust_remote_code=True,
    torch_dtype=torch.float32,
    low_cpu_mem_usage=True,
    quantization_config=BitsAndBytesConfig(
        load_in_8bit=True,
        llm_int8_threshold=6.0,
        llm_int8_enable_fp32_cpu_offload=True,
        llm_int8_skip_modules=['lm_head'],
    ),
)

processor.save_pretrained(save_path)
model.save_pretrained(save_path, safe_serialization=True)

config = {}
with open(f'{save_path}/config.json') as f:
    config = json.load(f)
config['vision_config']['model_type'] = 'davit'
with open(f'{save_path}/config.json', 'w') as f:
    json.dump(config, f, indent=2)
Downloads last month
1
Safetensors
Model size
0.3B params
Tensor type
F32
·
I8
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for John6666/gokaygokay-Florence-2-SD3-Captioner-8bit

Quantized
(1)
this model

Datasets used to train John6666/gokaygokay-Florence-2-SD3-Captioner-8bit