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
for a given time-step, will this implementation not place all the sines first, and all the cosines later. (due to the line embeddings = torch.cat((embeddings.sin(), embeddings.cos()), dim=-1))
should it not be alternating sines and cosines like sin , cos, sin, cos ... and so on ?
The text was updated successfully, but these errors were encountered:
In the tutorial : https://github.com/huggingface/blog/blob/main/annotated-diffusion.md
for a given time-step, will this implementation not place all the sines first, and all the cosines later. (due to the line
embeddings = torch.cat((embeddings.sin(), embeddings.cos()), dim=-1)
)should it not be alternating sines and cosines like
sin , cos, sin, cos ... and so on
?The text was updated successfully, but these errors were encountered: