|
---
|
|
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] |