gpu_monitor
gpu_monitor copied to clipboard
Wrong pytorch installation code in example
This is minor issue but it would be nice to fix documentation in your example.
In examples/notebooks/InfluxDBLoggerExample.ipynb, pytorch installation line is
cuda install pytorch torchvision cuda80 -c python
this line should change to
conda install pytorch torchvision cuda80 -c python
or simply,
conda install pytorch torchvision -c python
Cool, thanks will change