[PyTorch][FrontEend] Can I load a torch model in tvm then convert it to IR with pure C++ without python

input_name = "input0"
shape_list = [(input_name, img.shape)]
mod, params = relay.frontend.from_pytorch(scripted_model, shape_list)

Can i get this mod in C++ without python?