kabirclark commited on
Commit
d8fed2c
·
verified ·
1 Parent(s): 47239ce

Update README.md

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