Training on top of an already existing model in C++

I am saving my model in Python using torch.jit.trace(model, example), and using this model in C++ for inference purpose. Is there a method by which I can train on top of this existing model in C++ itself? Or can it be done by Annotation instead of Tracing?