hysts / pytorch_mpiigaze

An unofficial PyTorch implementation of MPIIGaze and MPIIFaceGaze
MIT License
346 stars 85 forks source link

information about the pretrained ResNet-preact-8 model #44

Closed ShreshthSaxena closed 3 years ago

ShreshthSaxena commented 3 years ago

Hi, Can you please share details about the ResNet-preact-8 pre-trained model that's used in this repository ? What's the inspiration behind this and how much does this differ from the author's LeNet approach ?

hysts commented 3 years ago

Hi, @ShreshthSaxena

Basically, I just wondered what if I used a stronger backbone, so I tried it out in this repo. There's not much difference, it’s just that a bit slower than LeNet, but more accurate and reasonably fast.

In my understanding, at the time the original paper was written by the authors, the ResNet paper had not been published yet, and the authors only tried simple LeNet.

As I wanted a fast and accurate model, I tried some shallow ResNets, but it didn't improve much on the deeper models, so I chose ResNet-8 for the pre-training model provided in this repo.

ShreshthSaxena commented 3 years ago

thanks for the explanation. Do you also have the pre-trained LeNet model that could be used with this repo ?

hysts commented 3 years ago

Sorry, I don't have one.