Model reference · open weights
nova-d48w1024-sdxl1024 is an open-weight image model from BAAI. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | BAAI |
|---|---|
| Type | Image models |
| Task | Text→image |
| Parameters (lead) | 647M |
| Runs with | diffusers |
| Released | 2024-12-17 |
| Popularity | 1k downloads / month |
| Licence | Open weights |
About
Using the 🤗's Diffusers library to run NOVA in a simple and efficient manner.
pip install diffusers transformers accelerate
pip install git+ssh://git@github.com/baaivision/NOVA.git
Running the pipeline:
import torch
from diffnext.pipelines import NOVAPipeline
model_id = "BAAI/nova-d48w1024-sdxl1024"
model_args = {"torch_dtype": torch.float16, "trust_remote_code": True}
pipe = NOVAPipeline.from_pretrained(model_id, **model_args)
pipe = pipe.to("cuda")
prompt = "a shiba inu wearing a beret and black turtleneck."
image = pipe(prompt).images[0]
image.save("shiba_inu.jpg")
The model is intended for research purposes only. Possible research areas and tasks include
Excluded uses are described below.
The model was not trained to be factual or true representations of people or events, and therefore using the model to generate such content is out-of-scope for the abilities of this model.
Using the model to generate content that is cruel to individuals is a misuse of this model. This includes, but is not limited to:
While the capabilities of image generation models are impressive, they can also reinforce or exacerbate social biases.
From the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys nova-d48w1024-sdxl1024 for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (nova-d48w1024-sdxl1024 below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/images/generations \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"nova-d48w1024-sdxl1024","prompt":"a red bicycle","size":"1024x1024"}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.