Views
No views yet
Preview releaseThe model is still training. Checkpoints and behavior may change during the preview period, and generation quality is still quite variable.
v0003ComfyUI-Canter. They use
the package's conditioning, guidance, schedule, solver, preview-projection,
and VAE APIs.SmolLM2-360M weights,
Python package, and Gradio interface. Image decoding uses
data-archetype/dinac_ae_d2
VAE, which is downloaded automatically.>=2.13,<2.14) with a compatible CUDA buildmain revision, and install
the package in editable mode:1python -m pip install "huggingface-hub>=1.15,<2"
2hf download data-archetype/canter --revision main --local-dir canter
3cd canter
4python -m pip install -e ".[webui]"main contains the latest Canter code and the current default checkpoint.
Editable installation means that refreshing the same directory updates the
code used by the installed canter-web command.
For Python API use without the Gradio interface, install with
python -m pip install -e . instead.hf download by running:hf download data-archetype/canter --revision main --local-dir canter-e, reinstall it afterwards with
python -m pip install --upgrade "./canter[webui]". A Git clone on the main
branch can instead be updated with git pull; an editable installation
immediately uses the updated checkout.python app.py --in-browserapp.py loads the weights from its own repository directory and
downloads the latest compatible DINAC-AE-D2 VAE. The interface appears
immediately and reports model loading and PyTorch compilation progress.(text:weight) emphasis during
inference. The same syntax works through the Python pipeline, Gradio interface,
and Canter ComfyUI text-encode nodes.python app.py --server-name 0.0.0.0 --server-port 7860--server-name 127.0.0.1 to restrict access to the local machine.canter-web --model data-archetype/canter --in-browserpython app.py --help or canter-web --help for model revision, weight
dtype, text backend, device, cache, and server options.Please enter a prompt for blank or whitespace-only text. To explicitly allow
unconditional generation, launch it with --allow-empty-prompt:python app.py --allow-empty-prompt1from canter import CanterPipeline
2
3pipe = CanterPipeline.from_pretrained("data-archetype/canter")
4result = pipe(
5 "A weathered wooden boardwalk descending toward a rugged coastline "
6 "under a stormy sky"
7)
8result.image.save("canter.png")pipe = CanterPipeline.from_pretrained("data-archetype/canter")1pipe = CanterPipeline.from_pretrained(
2 "data-archetype/canter",
3 revision="v0001",
4)1canter-web \
2 --model data-archetype/canter \
3 --revision v0001 \
4 --in-browserapp.py from a tagged standalone download intentionally uses the code
bundled with that historical snapshot. Use the installed canter-web command
as above when testing old weights with current code.v0001, v0002, v0003, and later numbering scheme.
Optional full-float32 releases use tags such as v0001-fp32.1@misc{canter,
2 title = {Canter: An Efficient, Photography-Oriented Text-to-Image Model},
3 author = {data-archetype},
4 email = {data-archetype@proton.me},
5 year = {2026},
6 month = jul,
7 url = {https://huggingface.co/data-archetype/canter},
8}MG-BY-SA-2.0). Commercial use, modification, redistribution, and hosted
use are permitted subject to its attribution, source-disclosure, and
share-alike conditions. Distributions must retain NOTICE.LICENSE-APACHE-2.0 and Attribution. DINAC-AE-D2 remains
under the license published in its own repository.