Instructions to use AiCoderv2/Mori with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use AiCoderv2/Mori with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("AiCoderv2/Mori", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
datasets:
|
| 4 |
+
- HuggingFaceFW/fineweb
|
| 5 |
+
- HuggingFaceFW/fineweb-2
|
| 6 |
+
base_model:
|
| 7 |
+
- moonshotai/Kimi-K2-Instruct
|
| 8 |
+
- Qwen/Qwen3-Coder-480B-A35B-Instruct
|
| 9 |
+
- zai-org/GLM-4.5
|
| 10 |
+
new_version: moonshotai/Kimi-K2-Instruct
|
| 11 |
+
library_name: diffusers
|
| 12 |
+
---
|