replicate / flan-t5-small

A small language model for tasks like classification, summarization, and more.

  • Public
  • 718 runs
  • GitHub
  • Paper
  • License

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

Pricing

Trainings for this model run on Nvidia A100 (80GB) GPU hardware, which costs $0.0014 per second.

Create a training

Install the Python library:

pip install replicate

Then, run this to create a training with replicate/flan-t5-small:d76ce8f0 as the base model:

import replicate

training = replicate.trainings.create(
  version="replicate/flan-t5-small:d76ce8f0610c0ac215caec685e7e2f4b488ae57239e640617ca11087580db2c3",
  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.