How to set model sample weights during training?

The dataset I’m trying to train with comes with a initial weight for each row. I would like to use it as the initial weights during training.

In Keras, I can do that by setting the sample_weight parameters in the model.fit function.

But I can’t find any place in Axon where I can do the same.