Thanks a lot for your work for this pytorch version. This is really helpful for me. One quick question. I am wondering if the code here should be self.n2(lat)? My understanding is that n2 denotes the phi in the paper. Thanks.
def predict_eigs(self, x):
lat = self.encoder(x)
return self.n2(lat)
Thanks a lot for your work for this pytorch version. This is really helpful for me. One quick question. I am wondering if the code here should be
self.n2(lat)? My understanding is thatn2denotes the phi in the paper. Thanks.