How can I track the nightly version of PyTorch

Hi, guys!

I know I can track every official release version of pytorch here (Releases · pytorch/pytorch · GitHub)

But if I want to know the nightly version is doing (e.g., what new features are added, what bugs are fixed). I mean is there any doc of these things?

Thx in advance!

No, release notes are not created daily, but you can use torch.version.git_version to check the commit the nightly is based on and check the commit history on GitHub.

1 Like