YirongMao / NAN

This is an unofficial PyTorch 1.0.1 implementation of the papr Neural Aggregation Network for Video Face Recognition. CVPR 2017
MIT License
21 stars 5 forks source link

Can the first training network used to get the features be sent the code? #5

Closed mmzhang012 closed 3 years ago

mmzhang012 commented 3 years ago

Hello, author.I recently wanted to make changes to the first network part of this code.But I don't know how the ResNet34 network is implemented in your code. Is it convenient for you to send the ResNet34 network implementation code?

YirongMao commented 3 years ago

Hello, author.I recently wanted to make changes to the first network part of this code.But I don't know how the ResNet34 network is implemented in your code. Is it convenient for you to send the ResNet34 network implementation code?

Thanks for your interest. My backbone network is borrowed from torchvision: https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py

mmzhang012 commented 3 years ago

Hello, author.I recently wanted to make changes to the first network part of this code.But I don't know how the ResNet34 network is implemented in your code. Is it convenient for you to send the ResNet34 network implementation code?

Thanks for your interest. My backbone network is borrowed from torchvision: https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py

Thank you very much for your reply! But I'm still confused. I don't know how to write the code for the data passing in and the result saving part. Can I have the honor to get your training source code? Thank you again for taking time out of your busy schedule to reply me!

YirongMao commented 3 years ago

Hello, author.I recently wanted to make changes to the first network part of this code.But I don't know how the ResNet34 network is implemented in your code. Is it convenient for you to send the ResNet34 network implementation code?

Thanks for your interest. My backbone network is borrowed from torchvision: https://github.com/pytorch/vision/blob/master/torchvision/models/resnet.py

Thank you very much for your reply! But I'm still confused. I don't know how to write the code for the data passing in and the result saving part. Can I have the honor to get your training source code? Thank you again for taking time out of your busy schedule to reply me!

As for training face recognition backbone, you can refer to Insightface project: https://github.com/deepinsight/insightface