BAAI / Bunny-v1_1-4B

huggingface.co
Total runs: 146
24-hour runs: 3
7-day runs: 8
30-day runs: -49
Model's Last Updated: June 24 2024
text-generation

Introduction of Bunny-v1_1-4B

Model Details of Bunny-v1_1-4B

Model Card

Logo

📖 Technical report | 🏠 Code | 🐰 Demo

This is Bunny-v1.1-4B.

Bunny is a family of lightweight but powerful multimodal models. It offers multiple plug-and-play vision encoders, like EVA-CLIP, SigLIP and language backbones, including Phi-3-mini, Llama-3-8B, Phi-1.5, StableLM-2 and Phi-2. To compensate for the decrease in model size, we construct more informative training data by curated selection from a broader data source.

We provide Bunny-v1.1-4B, which is built upon SigLIP and Phi-3-mini-4k-instruct with S 2 ^{2} -Wrapper , supporting 1152x1152 resolution. More details about this model can be found in GitHub .

comparison

Quickstart

Here we show a code snippet to show you how to use the model with transformers.

Before running the snippet, you need to install the following dependencies:

pip install torch transformers accelerate pillow

If the CUDA memory is enough, it would be faster to execute this snippet by setting CUDA_VISIBLE_DEVICES=0 .

Users especially those in Chinese mainland may want to refer to a HuggingFace mirror site .

import torch
import transformers
from transformers import AutoModelForCausalLM, AutoTokenizer
from PIL import Image
import warnings

# disable some warnings
transformers.logging.set_verbosity_error()
transformers.logging.disable_progress_bar()
warnings.filterwarnings('ignore')

# set device
device = 'cuda'  # or cpu
torch.set_default_device(device)

# create model
model = AutoModelForCausalLM.from_pretrained(
    'BAAI/Bunny-v1_1-4B',
    torch_dtype=torch.float16, # float32 for cpu
    device_map='auto',
    trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained(
    'BAAI/Bunny-v1_1-4B',
    trust_remote_code=True)

# text prompt
prompt = 'Why is the image funny?'
text = f"A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. USER: <image>\n{prompt} ASSISTANT:"
text_chunks = [tokenizer(chunk).input_ids for chunk in text.split('<image>')]
input_ids = torch.tensor(text_chunks[0] + [-200] + text_chunks[1][1:], dtype=torch.long).unsqueeze(0).to(device)

# image, sample images can be found in images folder
image = Image.open('example_2.png')
image_tensor = model.process_images([image], model.config).to(dtype=model.dtype, device=device)

# generate
output_ids = model.generate(
    input_ids,
    images=image_tensor,
    max_new_tokens=100,
    use_cache=True,
    repetition_penalty=1.0 # increase this to avoid chattering
)[0]

print(tokenizer.decode(output_ids[input_ids.shape[1]:], skip_special_tokens=True).strip())

Runs of BAAI Bunny-v1_1-4B on huggingface.co

146
Total runs
3
24-hour runs
7
3-day runs
8
7-day runs
-49
30-day runs

More Information About Bunny-v1_1-4B huggingface.co Model

More Bunny-v1_1-4B license Visit here:

https://choosealicense.com/licenses/apache-2.0

Bunny-v1_1-4B huggingface.co

Bunny-v1_1-4B huggingface.co is an AI model on huggingface.co that provides Bunny-v1_1-4B's model effect (), which can be used instantly with this BAAI Bunny-v1_1-4B model. huggingface.co supports a free trial of the Bunny-v1_1-4B model, and also provides paid use of the Bunny-v1_1-4B. Support call Bunny-v1_1-4B model through api, including Node.js, Python, http.

Bunny-v1_1-4B huggingface.co Url

https://huggingface.co/BAAI/Bunny-v1_1-4B

BAAI Bunny-v1_1-4B online free

Bunny-v1_1-4B huggingface.co is an online trial and call api platform, which integrates Bunny-v1_1-4B's modeling effects, including api services, and provides a free online trial of Bunny-v1_1-4B, you can try Bunny-v1_1-4B online for free by clicking the link below.

BAAI Bunny-v1_1-4B online free url in huggingface.co:

https://huggingface.co/BAAI/Bunny-v1_1-4B

Bunny-v1_1-4B install

Bunny-v1_1-4B is an open source model from GitHub that offers a free installation service, and any user can find Bunny-v1_1-4B on GitHub to install. At the same time, huggingface.co provides the effect of Bunny-v1_1-4B install, users can directly use Bunny-v1_1-4B installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Bunny-v1_1-4B install url in huggingface.co:

https://huggingface.co/BAAI/Bunny-v1_1-4B

Url of Bunny-v1_1-4B

Bunny-v1_1-4B huggingface.co Url

Provider of Bunny-v1_1-4B huggingface.co

BAAI
ORGANIZATIONS

Other API from BAAI

huggingface.co

Total runs: 64.6M
Run Growth: -9.1M
Growth Rate: -14.02%
Updated:February 22 2024
huggingface.co

Total runs: 38.1M
Run Growth: 2.6M
Growth Rate: 6.81%
Updated:July 03 2024
huggingface.co

Total runs: 12.1M
Run Growth: -754.9K
Growth Rate: -6.26%
Updated:February 21 2024
huggingface.co

Total runs: 10.5M
Run Growth: -1.1M
Growth Rate: -10.36%
Updated:February 21 2024
huggingface.co

Total runs: 2.4M
Run Growth: 1.9M
Growth Rate: 78.66%
Updated:April 17 2024
huggingface.co

Total runs: 813.7K
Run Growth: -585.3K
Growth Rate: -71.93%
Updated:October 12 2023
huggingface.co

Total runs: 223.4K
Run Growth: -1.2M
Growth Rate: -549.69%
Updated:December 13 2023
huggingface.co

Total runs: 67.8K
Run Growth: 60.2K
Growth Rate: 88.75%
Updated:October 12 2023
huggingface.co

Total runs: 66.0K
Run Growth: -3.8K
Growth Rate: -5.82%
Updated:July 13 2026
huggingface.co

Total runs: 58.4K
Run Growth: -23.2K
Growth Rate: -39.65%
Updated:October 12 2023
huggingface.co

Total runs: 52.4K
Run Growth: -111.9K
Growth Rate: -213.70%
Updated:October 12 2023
huggingface.co

Total runs: 49.7K
Run Growth: 27.1K
Growth Rate: 54.42%
Updated:November 14 2023
huggingface.co

Total runs: 39.0K
Run Growth: -22.2K
Growth Rate: -58.01%
Updated:January 15 2025
huggingface.co

Total runs: 15.8K
Run Growth: 229
Growth Rate: 1.45%
Updated:April 16 2025
huggingface.co

Total runs: 10.7K
Run Growth: -14.3K
Growth Rate: -133.45%
Updated:October 12 2023
huggingface.co

Total runs: 5.5K
Run Growth: 4.9K
Growth Rate: 89.12%
Updated:April 19 2024
huggingface.co

Total runs: 4.9K
Run Growth: -7.9K
Growth Rate: -161.57%
Updated:May 20 2025
huggingface.co

Total runs: 3.6K
Run Growth: 2.6K
Growth Rate: 73.62%
Updated:September 11 2026
huggingface.co

Total runs: 2.1K
Run Growth: 1.6K
Growth Rate: 75.18%
Updated:December 31 2022
huggingface.co

Total runs: 1.8K
Run Growth: -13.4K
Growth Rate: -731.78%
Updated:January 15 2025
huggingface.co

Total runs: 1.7K
Run Growth: -306
Growth Rate: -18.66%
Updated:April 10 2026
huggingface.co

Total runs: 1.7K
Run Growth: -1.1K
Growth Rate: -71.89%
Updated:April 10 2026
huggingface.co

Total runs: 1.4K
Run Growth: 968
Growth Rate: 70.61%
Updated:November 28 2024
huggingface.co

Total runs: 1.3K
Run Growth: 619
Growth Rate: 48.86%
Updated:October 23 2024
huggingface.co

Total runs: 1.2K
Run Growth: 307
Growth Rate: 24.98%
Updated:September 11 2026
huggingface.co

Total runs: 1.1K
Run Growth: 795
Growth Rate: 74.93%
Updated:October 24 2024
huggingface.co

Total runs: 920
Run Growth: -536
Growth Rate: -58.26%
Updated:February 07 2024
huggingface.co

Total runs: 768
Run Growth: -66
Growth Rate: -8.47%
Updated:May 23 2025
huggingface.co

Total runs: 565
Run Growth: -139
Growth Rate: -24.60%
Updated:July 13 2026
huggingface.co

Total runs: 491
Run Growth: 168
Growth Rate: 34.57%
Updated:April 10 2026
huggingface.co

Total runs: 450
Run Growth: -17
Growth Rate: -3.78%
Updated:July 13 2026
huggingface.co

Total runs: 417
Run Growth: -439
Growth Rate: -105.28%
Updated:April 18 2023
huggingface.co

Total runs: 390
Run Growth: -205
Growth Rate: -52.56%
Updated:October 27 2023
huggingface.co

Total runs: 377
Run Growth: -255
Growth Rate: -63.91%
Updated:August 11 2026
huggingface.co

Total runs: 368
Run Growth: -862
Growth Rate: -222.16%
Updated:August 11 2026
huggingface.co

Total runs: 355
Run Growth: 185
Growth Rate: 52.11%
Updated:July 13 2026
huggingface.co

Total runs: 323
Run Growth: 31
Growth Rate: 9.60%
Updated:July 13 2026
huggingface.co

Total runs: 319
Run Growth: 231
Growth Rate: 72.41%
Updated:August 18 2026
huggingface.co

Total runs: 310
Run Growth: -937
Growth Rate: -320.89%
Updated:December 25 2025
huggingface.co

Total runs: 291
Run Growth: -138
Growth Rate: -47.42%
Updated:March 07 2024
huggingface.co

Total runs: 287
Run Growth: -75
Growth Rate: -26.13%
Updated:July 13 2026
huggingface.co

Total runs: 286
Run Growth: -372
Growth Rate: -115.89%
Updated:December 25 2025
huggingface.co

Total runs: 275
Run Growth: -3.9K
Growth Rate: -1413.50%
Updated:April 10 2026
huggingface.co

Total runs: 267
Run Growth: -115
Growth Rate: -44.92%
Updated:April 10 2026
huggingface.co

Total runs: 223
Run Growth: -119
Growth Rate: -54.34%
Updated:June 06 2025
huggingface.co

Total runs: 223
Run Growth: -70
Growth Rate: -31.25%
Updated:July 17 2026
huggingface.co

Total runs: 208
Run Growth: -82
Growth Rate: -39.42%
Updated:July 13 2026
huggingface.co

Total runs: 202
Run Growth: -65
Growth Rate: -32.18%
Updated:July 13 2026
huggingface.co

Total runs: 200
Run Growth: 65
Growth Rate: 32.50%
Updated:April 02 2024
huggingface.co

Total runs: 182
Run Growth: 7
Growth Rate: 3.85%
Updated:July 13 2026
huggingface.co

Total runs: 179
Run Growth: -170
Growth Rate: -95.51%
Updated:October 23 2024
huggingface.co

Total runs: 171
Run Growth: 165
Growth Rate: 100.00%
Updated:September 05 2026
huggingface.co

Total runs: 169
Run Growth: -2
Growth Rate: -1.18%
Updated:June 24 2024
huggingface.co

Total runs: 169
Run Growth: 50
Growth Rate: 29.59%
Updated:August 23 2023
huggingface.co

Total runs: 168
Run Growth: -73
Growth Rate: -43.98%
Updated:April 10 2026
huggingface.co

Total runs: 162
Run Growth: 40
Growth Rate: 24.69%
Updated:July 13 2026
huggingface.co

Total runs: 161
Run Growth: 108
Growth Rate: 67.50%
Updated:November 02 2025
huggingface.co

Total runs: 157
Run Growth: -36
Growth Rate: -22.93%
Updated:May 13 2024
huggingface.co

Total runs: 157
Run Growth: -77
Growth Rate: -49.04%
Updated:May 13 2024
huggingface.co

Total runs: 154
Run Growth: 54
Growth Rate: 35.53%
Updated:March 13 2026
huggingface.co

Total runs: 152
Run Growth: -57
Growth Rate: -37.50%
Updated:July 13 2026
huggingface.co

Total runs: 152
Run Growth: -41
Growth Rate: -26.97%
Updated:May 13 2024
huggingface.co

Total runs: 152
Run Growth: -44
Growth Rate: -28.95%
Updated:May 31 2024