Which version of pytorch is the nightly? (If stable is 1.7.0, what is the version number of nightly)
How stable is nightly? I guess its less stable than the stable version, but should I expect problems working with it? (I work with CNNs and GANS, nothing speical)
When I install the nightly build with pip/conda, all the cuda and cudnn stuff are inside the binaries? And if so, the only thing I need is nvidia drivers?
Are there any specifications on the nightly build, like which cuda and cudnn it uses, when was the latest version released etc?
The nightly release is tagged with the date e.g. as: 1.8.0.dev20201109
You might see more issues, as the nightly will be rebuild every day from the current master branch. That being said, I donโt have the feeling that the nightly is terribly unstable.
Yes
You can use the install command from the website (same as for the stable release) and specify which cudatoolkit you would like to use.
The nightly is not 1.8.0, which would be a future stable release, but 1.8.0.devDATE.
The stable releases are not created by tagging a specific nightly release as stable, but a versioned branch is created (e.g. at the moment for 1.7.1), which gets specific commits/fixes etc., while the master branch and the nightlies keep moving.