cneural/sdxl-t4

Public
232.5K runs

If you haven’t yet trained a model on Replicate, you can read one of the following guides.

Pricing

Trainings for this model run on Nvidia T4 GPU hardware, which costs $0.000225 per second.

Create a training

Install the Python library:

pip install replicate

Then, run this to create a training with cneural/sdxl-t4:182fa00a as the base model:

import replicate

training = replicate.trainings.create(
  version="cneural/sdxl-t4:182fa00acbe344ac4a3c8701ca3cd3bd4ce6a31a127c13b9a18369630241e582",
  input={
    ...
  },
  destination=f"{username}/<destination-model-name>"
)

print(training)

Note that before you can create a training, you’ll need to create a model and use its name as the value for the destination field.