File size: 533 Bytes
47239ce d8fed2c 47239ce d8fed2c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
---
license: llama3.3
datasets:
- HuggingFaceFW/fineweb-2
language:
- aa
metrics:
- bleu
base_model:
- meta-llama/Llama-3.3-70B-Instruct
- IamCreateAI/Ruyi-Mini-7B
new_version: meta-llama/Llama-3.3-70B-Instruct
pipeline_tag: text-generation
library_name: asteroid
tags:
- code
- legal
---
from diffusers import DiffusionPipeline
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev")
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0] |