How can i know the architecture of pre-trained model in Pytorch?

1.3k Views Asked by At

I have downloaded this pre-trained model "model_ir_se50.pth" for face recognition. It is giving very good results. How can i know its architecture?

1

There are 1 best solutions below

4
On

simple print(net) #replace net with the network variable will work as per your need.