PixCell-256
709
7
license:cc-by-nc-nd-4.0
by
StonyBrook-CVLab
Other
OTHER
New
709 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
PixCell: A generative foundation model for digital histopathology images [[📄 arXiv]](https://arxiv.
Code Examples
Load PixCell-256 modelpythonpytorch
import torch
from diffusers import DiffusionPipeline
from diffusers import AutoencoderKL
device = torch.device('cuda')
# We do not host the weights of the SD3 VAE -- load it from StabilityAI
sd3_vae = AutoencoderKL.from_pretrained("stabilityai/stable-diffusion-3.5-large", subfolder="vae")
pipeline = DiffusionPipeline.from_pretrained(
"StonyBrook-CVLab/PixCell-256",
vae=sd3_vae,
custom_pipeline="StonyBrook-CVLab/PixCell-pipeline",
trust_remote_code=True,
torch_dtype=torch.float16,
)
pipeline.to(device);Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.