Warlord-K commited on
Commit
6f8c1f0
1 Parent(s): 3e4edfd
Files changed (1) hide show
  1. README.md +0 -121
README.md DELETED
@@ -1,121 +0,0 @@
1
- ---
2
- license: other
3
- license_name: bria-t2i
4
- license_link: https://bria.ai/customer-general-terms-and-conditions
5
- library_name: diffusers
6
- inference: False
7
-
8
- tags:
9
- - text-to-image
10
- - legal liability
11
- - commercial use
12
- extra_gated_description:
13
- Model weights from BRIA AI can be obtained with the purchase of a commercial license. Fill in the form below and we reach out to you.
14
- Need API Access? Get it [here](https://platform.bria.ai/console/api/image-generation) (1K Monthly Free API Calls).
15
- Startup or a student? Get access by applying for our [Startup Program](https://pages.bria.ai/the-visual-generative-ai-platform-for-builders-startups-plan?_gl=1*cqrl81*_ga*MTIxMDI2NzI5OC4xNjk5NTQ3MDAz*_ga_WRN60H46X4*MTcwOTM5OTMzNC4yNzguMC4xNzA5Mzk5MzM0LjYwLjAuMA..)
16
- extra_gated_heading: "Fill in this form to request a commercial license for the model"
17
- extra_gated_fields:
18
- Name: text
19
- Company/Org name: text
20
- Org Type (Early/Growth Startup, Enterprise, Academy): text
21
- Role: text
22
- Country: text
23
- Email: text
24
- By submitting this form, I agree to BRIA’s Privacy policy and Terms & conditions, see links below: checkbox
25
- ---
26
-
27
- # BRIA 2.3: Text-to-Image Model for Commercial Licensing
28
-
29
- Bria AI 2.3 is our groundbreaking text-to-image model 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.
30
-
31
- For more information, please visit our [website](https://bria.ai/).
32
-
33
- Join our [Discord community](https://discord.gg/Nxe9YW9zHS) for more information, tutorials, tools, and to connect with other users!
34
-
35
-
36
-
37
-
38
-
39
- # What's New
40
-
41
- Bria AI 2.3 is a premium model which improves the generation of illustration, art, and human faces compared to [BRIA 2.2](https://huggingface.co/briaai/BRIA-2.2).
42
-
43
- [CLICK HERE FOR A DEMO](https://huggingface.co/spaces/briaai/BRIA-2.3)
44
-
45
-
46
-
47
- Check out our entire family of models, including our [Fast model](https://huggingface.co/briaai/BRIA-2.2-FAST) and our [HD model](https://huggingface.co/briaai/BRIA-2.2-HD)
48
-
49
-
50
- ### Get Access
51
- Interested in BRIA 2.3? Purchase is required to license and access BRIA 2.3, ensuring royalty management with our data partners and full liability coverage for commercial use.
52
-
53
- Are you a startup or a student? We encourage you to apply for our [Startup Program](https://pages.bria.ai/the-visual-generative-ai-platform-for-builders-startups-plan?_gl=1*cqrl81*_ga*MTIxMDI2NzI5OC4xNjk5NTQ3MDAz*_ga_WRN60H46X4*MTcwOTM5OTMzNC4yNzguMC4xNzA5Mzk5MzM0LjYwLjAuMA..) to request access. This program are designed to support emerging businesses and academic pursuits with our cutting-edge technology.
54
-
55
- Contact us today to unlock the potential of BRIA 2.3! By submitting the form above, you agree to BRIA’s [Privacy policy](https://bria.ai/privacy-policy/) and [Terms & conditions](https://bria.ai/terms-and-conditions/).
56
-
57
- ![](photo-grid-2-3.jpeg)
58
-
59
- # Key Features
60
-
61
- - **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.
62
-
63
- - **Patented Attribution Engine**: Our attribution engine is our way to compensate our data partners, powered by our proprietary and patented algorithms.
64
-
65
- - **Enterprise-Ready**: Specifically designed for business applications, Bria AI 2.3 delivers high-quality, compliant imagery for a variety of commercial needs.
66
-
67
- - **Customizable Technology**: Provides access to source code and weights for extensive customization, catering to specific business requirements.
68
-
69
- ### Model Description
70
-
71
- - **Developed by:** BRIA AI
72
- - **Model type:** Latent diffusion text-to-image model
73
- - **License:** [Commercial licensing terms & conditions.](https://bria.ai/customer-general-terms-and-conditions)
74
- - Purchase is required to license and access the model.
75
-
76
- - **Model Description:** BRIA 2.3 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.
77
- - **Resources for more information:** [BRIA AI](https://bria.ai/)
78
-
79
-
80
-
81
-
82
-
83
-
84
- ### Code example using Diffusers
85
-
86
-
87
- ```
88
- pip install diffusers
89
- ```
90
-
91
-
92
- ```py
93
- from diffusers import DiffusionPipeline
94
- import torch
95
-
96
- pipe = DiffusionPipeline.from_pretrained("briaai/BRIA-2.3", torch_dtype=torch.float16, use_safetensors=True)
97
- pipe.force_zeros_for_empty_prompt = False
98
- pipe.to("cuda")
99
-
100
-
101
- prompt = "A portrait of a Beautiful and playful ethereal singer, golden designs, highly detailed, blurry background"
102
- 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"
103
-
104
- images = pipe(prompt=prompt, negative_prompt=negative_prompt, height=1024, width=1024).images[0]
105
- ```
106
-
107
-
108
- ### Some tips for using our text-to-image model at inference:
109
-
110
-
111
- 1. You must set `pipe.force_zeros_for_empty_prompt = False`
112
- 2. Using negative prompt is recommended.
113
- 3. For Fine-tuning, use null text embedding instead of zeros (see SD 1.5 fine-tuning scripts for example).
114
- 4. We support multiple aspect ratios, yet resolution should overall consists approximately `1024*1024=1M` pixels, for example:
115
- `(1024,1024), (1280, 768), (1344, 768), (832, 1216), (1152, 832), (1216, 832), (960,1088)`
116
- 5. If you need speed - try the BRIA 2.3 Fast which achieve comparable quality with 75% reduced inference time
117
- 6. For 2.3 (not Fast) use 30-50 steps (higher is better), the Fast model works well with just 8 steps
118
- 7. For 2.3 (not Fast) use `guidance_scale` of 5.0 or 7.5, for the Fast models use 1.0
119
-
120
-
121
-