BRIA 2.2 HD: Text-to-Image Model for Commercial Licensing
Note: Bria 3 generation is available: Bria 3.1
Bria AI 2.2HD is the HD version of our 2.x text-to-image models explicitly designed for commercial applications. This model combines technological innovation with ethical responsibility and legal security, setting a new standard in the AI industry. Bria AI licenses the foundation model with full legal liability coverage. Our dataset does not contain copyrighted materials, such as fictional characters, logos, trademarks, public figures, harmful content, or privacy-infringing content. To obtain legal liability install the Bria Agent
Get Access
Bria 2.2HD is available everywhere you build, either as source-code and weights, ComfyUI nodes or API endpoints.
- API Endpoint: Bria.ai, fal.ai
- ComfyUI: Use it in workflows
For Commercial Use
- Purchase: for commercial license simply click Here.
For more information, please visit our website.
What's New
Bria 2.2HD, our most capable model, presents higher resolutions (such as 1536,1536 or 1920, 1088), while maintaining high realism and aesthetics as BRIA-2.2.
[CLICK HERE FOR A DEMO] (https://huggingface.co/spaces/briaai/BRIA-2.2-HD)
Key Features
Legally Compliant: Offers full legal liability coverage for copyright and privacy infringements. Thanks to training on 100% licensed data from leading data partners, we ensure the ethical use of content.
Patented Attribution Engine: Our attribution engine is our way to compensate our data partners, powered by our proprietary and patented algorithms.
Enterprise-Ready: Specifically designed for business applications, Bria AI 2.2 HD delivers high-quality, compliant imagery for a variety of commercial needs.
Customizable Technology: Provides access to source code and weights for extensive customization, catering to specific business requirements.
Model Description
Developed by: BRIA AI
Model type: Latent diffusion text-to-image model
Purchase is required to license and access the model.
Model Description: BRIA 2.2 HD is a text-to-image model trained exclusively on a professional-grade, licensed dataset. It is designed for commercial use and includes full legal liability coverage.
Resources for more information: BRIA AI
Code example using Diffusers
pip install diffusers
from diffusers import UNet2DConditionModel, DiffusionPipeline
import torch
unet = UNet2DConditionModel.from_pretrained("briaai/BRIA-2.2-HD", torch_dtype=torch.float16, use_safetensors=True)
pipe = DiffusionPipeline.from_pretrained("briaai/BRIA-2.2", unet=unet, torch_dtype=torch.float16, use_safetensors=True)
del unet
pipe.to("cuda")
prompt = "A portrait of a Beautiful and playful ethereal singer, golden designs, highly detailed, blurry background"
negative_prompt = "Logo,Watermark,Text,Ugly,Morbid,Extra fingers,Poorly drawn hands,Mutation,Blurry,Extra limbs,Gross proportions,Missing arms,Mutated hands,Long neck,Duplicate,Mutilated,Mutilated hands,Poorly drawn face,Deformed,Bad anatomy,Cloned face,Malformed limbs,Missing legs,Too many fingers"
images = pipe(prompt=prompt, negative_prompt=negative_prompt, height=1536, width=1536).images[0]
- Downloads last month
- 1