Instructions to use EvanZhouDev/open-genmoji with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use EvanZhouDev/open-genmoji 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("EvanZhouDev/open-genmoji") prompt = "fireplace" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Add notice about Prompt Assist
Browse files
README.md
CHANGED
|
@@ -36,18 +36,20 @@ instance_prompt: emoji
|
|
| 36 |
|
| 37 |
## Model description
|
| 38 |
|
| 39 |
-
|
|
|
|
|
|
|
| 40 |
|
| 41 |
Open Genmoji attempts to recreate Apple's Genmoji feature, but with open technology! Open Genmoji works anywhere—Not just Apple devices.
|
| 42 |
|
| 43 |
Read more about Open Genmoji, along with how to use it [on the GitHub](https://github.com/EvanZhouDev/open-genmoji).
|
| 44 |
|
| 45 |
-
## Trigger words
|
| 46 |
|
| 47 |
You should use `emoji` to trigger the image generation.
|
| 48 |
|
| 49 |
|
| 50 |
-
## Download model
|
| 51 |
|
| 52 |
Weights for this model are available in Safetensors format.
|
| 53 |
|
|
|
|
| 36 |
|
| 37 |
## Model description
|
| 38 |
|
| 39 |
+
> **Important**: The prompts above were used **with [Open Genmoji Prompt Assist](https://github.com/EvanZhouDev/open-genmoji?tab=readme-ov-file#prompt-assist)**. You will **not** get the same results simply by running the model directly with this prompt. Please learn more [on the GitHub](https://github.com/EvanZhouDev/open-genmoji).
|
| 40 |
+
|
| 41 |
+
### What is Open Genmoji?
|
| 42 |
|
| 43 |
Open Genmoji attempts to recreate Apple's Genmoji feature, but with open technology! Open Genmoji works anywhere—Not just Apple devices.
|
| 44 |
|
| 45 |
Read more about Open Genmoji, along with how to use it [on the GitHub](https://github.com/EvanZhouDev/open-genmoji).
|
| 46 |
|
| 47 |
+
### Trigger words
|
| 48 |
|
| 49 |
You should use `emoji` to trigger the image generation.
|
| 50 |
|
| 51 |
|
| 52 |
+
### Download model
|
| 53 |
|
| 54 |
Weights for this model are available in Safetensors format.
|
| 55 |
|