Use individual module within scriptModule

I am aware of being able to access named attributes to view them, or change their value. But how can we run a forward pass through a single module from a Python compiled ScriptModule in c++? For example, being able to send inputs through only one of the conv layers. Or utilizing a custom auxiliary function created in python within the model class to gain benefit from fused operations?

Figured this out. I traversed the named children of the loaded module and was able to save off the .value of the child module I was interested in. From there I could run a forward pass on the single layer from the model