issue-tracking
issue-tracking copied to clipboard
[feature request] add support for pytorch models in function set_model_graph
Currently, there's only support for TF model graphs.
Good idea! Do you have code that turns a pytorch model graph into JSON or a string rep?
You can get some info by simply printing the model:
from torchvision import models
model = models.vgg16()
print(model)
There's also a package called torchsummary that offers more detail:
from torchvision import models
from torchsummary import summary
vgg = models.vgg16()
summary(vgg, (3, 224, 224))
That is useful info. Thanks @Idodox , it is on our list!
There is also the option of converting the model to ONNX.
Indeed! We have some work on that front coming soon. I'll report back here.
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.
This issue was closed because it has been stalled for 5 days with no activity.