Instructions to use future-technologies/Floral-High-Dynamic-Range with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use future-technologies/Floral-High-Dynamic-Range with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("future-technologies/Floral-High-Dynamic-Range", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update LICENSE.md
Browse files- LICENSE.md +2 -2
LICENSE.md
CHANGED
|
@@ -6,9 +6,9 @@
|
|
| 6 |
Version 2.0, January 2004
|
| 7 |
http://www.apache.org/licenses/
|
| 8 |
|
| 9 |
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 10 |
|
| 11 |
-
|
| 12 |
"License" refers to the terms and conditions of use, reproduction, and distribution as outlined in this document.
|
| 13 |
|
| 14 |
"Licensor" means Future Technologies Limited, the copyright owner or authorized entity granting the License.
|
|
|
|
| 6 |
Version 2.0, January 2004
|
| 7 |
http://www.apache.org/licenses/
|
| 8 |
|
| 9 |
+
**TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION**
|
| 10 |
|
| 11 |
+
- **1. Definitions**
|
| 12 |
"License" refers to the terms and conditions of use, reproduction, and distribution as outlined in this document.
|
| 13 |
|
| 14 |
"Licensor" means Future Technologies Limited, the copyright owner or authorized entity granting the License.
|