merve / BiRefNet

huggingface.co
Total runs: 23
24-hour runs: 0
7-day runs: -7
30-day runs: -19
Model's Last Updated: January 28 2026
image-segmentation

Introduction of BiRefNet

Model Details of BiRefNet

Bilateral Reference for High-Resolution Dichotomous Image Segmentation

1 Nankai University 2 Northwestern Polytechnical University 3 National University of Defense Technology 4 Aalto University 5 Shanghai AI Laboratory 6 University of Trento
DIS-Sample_1 DIS-Sample_2

This repo is the official implementation of " Bilateral Reference for High-Resolution Dichotomous Image Segmentation " ( CAAI AIR 2024 ).

Visit our GitHub repo: https://github.com/ZhengPeng7/BiRefNet for more details -- codes , docs , and model zoo !

How to use
0. Install Packages:
pip install -qr https://raw.githubusercontent.com/ZhengPeng7/BiRefNet/main/requirements.txt
1. Load BiRefNet:
Use codes + weights from HuggingFace

Only use the weights on HuggingFace -- Pro: No need to download BiRefNet codes manually; Con: Codes on HuggingFace might not be latest version (I'll try to keep them always latest).

# Load BiRefNet with weights
from transformers import AutoModelForImageSegmentation
birefnet = AutoModelForImageSegmentation.from_pretrained('ZhengPeng7/BiRefNet', trust_remote_code=True)
Use codes from GitHub + weights from HuggingFace

Only use the weights on HuggingFace -- Pro: codes are always latest; Con: Need to clone the BiRefNet repo from my GitHub.

# Download codes
git clone https://github.com/ZhengPeng7/BiRefNet.git
cd BiRefNet
# Use codes locally
from models.birefnet import BiRefNet

# Load weights from Hugging Face Models
birefnet = BiRefNet.from_pretrained('ZhengPeng7/BiRefNet')
Use codes from GitHub + weights from local space

Only use the weights and codes both locally.

# Use codes and weights locally
import torch
from utils import check_state_dict

birefnet = BiRefNet(bb_pretrained=False)
state_dict = torch.load(PATH_TO_WEIGHT, map_location='cpu')
state_dict = check_state_dict(state_dict)
birefnet.load_state_dict(state_dict)
Use the loaded BiRefNet for inference
# Imports
from PIL import Image
import matplotlib.pyplot as plt
import torch
from torchvision import transforms
from models.birefnet import BiRefNet

birefnet = ... # -- BiRefNet should be loaded with codes above, either way.
torch.set_float32_matmul_precision(['high', 'highest'][0])
birefnet.to('cuda')
birefnet.eval()
birefnet.half()

def extract_object(birefnet, imagepath):
    # Data settings
    image_size = (1024, 1024)
    transform_image = transforms.Compose([
        transforms.Resize(image_size),
        transforms.ToTensor(),
        transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
    ])

    image = Image.open(imagepath)
    input_images = transform_image(image).unsqueeze(0).to('cuda').half()

    # Prediction
    with torch.no_grad():
        preds = birefnet(input_images)[-1].sigmoid().cpu()
    pred = preds[0].squeeze()
    pred_pil = transforms.ToPILImage()(pred)
    mask = pred_pil.resize(image.size)
    image.putalpha(mask)
    return image, mask

# Visualization
plt.axis("off")
plt.imshow(extract_object(birefnet, imagepath='PATH-TO-YOUR_IMAGE.jpg')[0])
plt.show()
2. Use inference endpoint locally:

You may need to click the deploy and set up the endpoint by yourself, which would make some costs.

import requests
import base64
from io import BytesIO
from PIL import Image


YOUR_HF_TOKEN = 'xxx'
API_URL = "xxx"
headers = {
    "Authorization": "Bearer {}".format(YOUR_HF_TOKEN)
}

def base64_to_bytes(base64_string):
    # Remove the data URI prefix if present
    if "data:image" in base64_string:
        base64_string = base64_string.split(",")[1]

    # Decode the Base64 string into bytes
    image_bytes = base64.b64decode(base64_string)
    return image_bytes

def bytes_to_base64(image_bytes):
    # Create a BytesIO object to handle the image data
    image_stream = BytesIO(image_bytes)

    # Open the image using Pillow (PIL)
    image = Image.open(image_stream)
    return image

def query(payload):
    response = requests.post(API_URL, headers=headers, json=payload)
    return response.json()

output = query({
    "inputs": "https://hips.hearstapps.com/hmg-prod/images/gettyimages-1229892983-square.jpg",
    "parameters": {}
})

output_image = bytes_to_base64(base64_to_bytes(output))
output_image

This BiRefNet for standard dichotomous image segmentation (DIS) is trained on DIS-TR and validated on DIS-TEs and DIS-VD .

This repo holds the official model weights of " Bilateral Reference for High-Resolution Dichotomous Image Segmentation " ( CAAI AIR 2024 ).

This repo contains the weights of BiRefNet proposed in our paper, which has achieved the SOTA performance on three tasks (DIS, HRSOD, and COD).

Go to my GitHub page for BiRefNet codes and the latest updates: https://github.com/ZhengPeng7/BiRefNet :)

Try our online demos for inference:
  • Online Image Inference on Colab: Open In Colab
  • Online Inference with GUI on Hugging Face with adjustable resolutions: Hugging Face Spaces
  • Inference and evaluation of your given weights: Open In Colab
Acknowledgement:
  • Many thanks to @Freepik for their generous support on GPU resources for training higher resolution BiRefNet models and more of my explorations.
  • Many thanks to @fal for their generous support on GPU resources for training better general BiRefNet models.
  • Many thanks to @not-lain for his help on the better deployment of our BiRefNet model on HuggingFace.
Citation
@article{zheng2024birefnet,
  title={Bilateral Reference for High-Resolution Dichotomous Image Segmentation},
  author={Zheng, Peng and Gao, Dehong and Fan, Deng-Ping and Liu, Li and Laaksonen, Jorma and Ouyang, Wanli and Sebe, Nicu},
  journal={CAAI Artificial Intelligence Research},
  volume = {3},
  pages = {9150038},
  year={2024}
}

Runs of merve BiRefNet on huggingface.co

23
Total runs
0
24-hour runs
-2
3-day runs
-7
7-day runs
-19
30-day runs

More Information About BiRefNet huggingface.co Model

More BiRefNet license Visit here:

https://choosealicense.com/licenses/mit

BiRefNet huggingface.co

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

BiRefNet huggingface.co Url

https://huggingface.co/merve/BiRefNet

merve BiRefNet online free

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

merve BiRefNet online free url in huggingface.co:

https://huggingface.co/merve/BiRefNet

BiRefNet install

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

BiRefNet install url in huggingface.co:

https://huggingface.co/merve/BiRefNet

Url of BiRefNet

BiRefNet huggingface.co Url

Provider of BiRefNet huggingface.co

merve
ORGANIZATIONS

Other API from merve

huggingface.co

Total runs: 50
Run Growth: 30
Growth Rate: 58.82%
Updated:January 06 2024
huggingface.co

Total runs: 37
Run Growth: -395
Growth Rate: -1012.82%
Updated:October 12 2023
huggingface.co

Total runs: 26
Run Growth: -3
Growth Rate: -11.11%
Updated:February 26 2024
huggingface.co

Total runs: 12
Run Growth: 7
Growth Rate: 58.33%
Updated:February 22 2024
huggingface.co

Total runs: 11
Run Growth: 5
Growth Rate: 45.45%
Updated:July 18 2024
huggingface.co

Total runs: 10
Run Growth: 3
Growth Rate: 27.27%
Updated:September 11 2025
huggingface.co

Total runs: 8
Run Growth: -22
Growth Rate: -275.00%
Updated:December 18 2024
huggingface.co

Total runs: 7
Run Growth: -2
Growth Rate: -28.57%
Updated:August 01 2023
huggingface.co

Total runs: 4
Run Growth: 2
Growth Rate: 50.00%
Updated:January 28 2023
huggingface.co

Total runs: 4
Run Growth: -25
Growth Rate: -625.00%
Updated:September 19 2025
huggingface.co

Total runs: 4
Run Growth: 2
Growth Rate: 50.00%
Updated:February 10 2023
huggingface.co

Total runs: 3
Run Growth: 1
Growth Rate: 33.33%
Updated:April 02 2023
huggingface.co

Total runs: 3
Run Growth: 0
Growth Rate: 0.00%
Updated:March 26 2024
huggingface.co

Total runs: 3
Run Growth: -1
Growth Rate: -33.33%
Updated:April 02 2023
huggingface.co

Total runs: 3
Run Growth: 1
Growth Rate: 33.33%
Updated:March 26 2024
huggingface.co

Total runs: 2
Run Growth: -3
Growth Rate: -150.00%
Updated:November 25 2023
huggingface.co

Total runs: 2
Run Growth: -2
Growth Rate: -100.00%
Updated:June 14 2023
huggingface.co

Total runs: 1
Run Growth: 1
Growth Rate: 100.00%
Updated:December 20 2024
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:April 25 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:May 22 2024
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:August 30 2022
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:May 30 2022
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 04 2024
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:October 22 2024
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:March 01 2022
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:March 13 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:September 22 2024
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:March 26 2024