Instructions to use Charrise/softanime with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Charrise/softanime with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Charrise/softanime", dtype=torch.bfloat16, device_map="cuda") prompt = "I like you. I love you" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
| 1 |
---
|
| 2 |
license: openrail++
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: openrail++
|
| 3 |
+
datasets:
|
| 4 |
+
- fka/awesome-chatgpt-prompts
|
| 5 |
+
- QingyiSi/Alpaca-CoT
|
| 6 |
+
metrics:
|
| 7 |
+
- accuracy
|
| 8 |
+
library_name: diffusers
|
| 9 |
+
pipeline_tag: text-classification
|
| 10 |
+
tags:
|
| 11 |
+
- art
|
| 12 |
+
---
|