Instructions to use retronic/platmoji with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use retronic/platmoji with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("retronic/platmoji") prompt = "an emoji of a man with a white background" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update config.yaml
Browse files- config.yaml +1 -1
config.yaml
CHANGED
|
@@ -54,7 +54,7 @@ config:
|
|
| 54 |
seed: 42
|
| 55 |
walk_seed: true
|
| 56 |
guidance_scale: 3.5
|
| 57 |
-
sample_steps:
|
| 58 |
meta:
|
| 59 |
name: flux_train_replicate
|
| 60 |
version: '1.0'
|
|
|
|
| 54 |
seed: 42
|
| 55 |
walk_seed: true
|
| 56 |
guidance_scale: 3.5
|
| 57 |
+
sample_steps: 150
|
| 58 |
meta:
|
| 59 |
name: flux_train_replicate
|
| 60 |
version: '1.0'
|