You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all thanks for shring your great works. However, I found some syntax and logical errors for all three transformers. One of them related to CLTV,
for cnn, transformer in self.layers:
x = cnn(x)
x = norm(x)
x = transformer(x)
### It should be:
for cnn, norm, transformer in self.layers:
x = cnn(x)
x = norm(x)
x = transformer(x)
The text was updated successfully, but these errors were encountered:
First of all thanks for shring your great works. However, I found some syntax and logical errors for all three transformers. One of them related to CLTV,
for cnn, transformer in self.layers:
x = cnn(x)
x = norm(x)
x = transformer(x)
### It should be:
for cnn, norm, transformer in self.layers:
x = cnn(x)
x = norm(x)
x = transformer(x)
The text was updated successfully, but these errors were encountered: