How to train a torchscripted model in pytorch?

I would like to train a model in Pytorch which has been already torchscripted. I am curious if it is possible at all to do so. I think it is possible with the torch.jit.trace but I am not sure if it is possible with the torch.jit.script. Any idea?

Yes, you should be able to train a scripted model (as long as you are able to script it).