facebookresearch / DomainBed

DomainBed is a suite to test domain generalization algorithms
MIT License
1.42k stars 299 forks source link

Library versions #11

Closed eyeris closed 4 years ago

eyeris commented 4 years ago

Could you please specify the library versions (pytorch, torchvision and CUDA) for this scipts.

lopezpaz commented 4 years ago

In my machine:

Python 3.8.3 (default, Jul  2 2020, 16:21:59) 
[GCC 7.3.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
(ins)>>> import torch
(ins)>>> import torchvision
(ins)>>> torch.__version__
'1.6.0'
(ins)>>> torchvision.__version__
'0.7.0'
(ins)>>> torch.version.cuda
'10.1'
AllenPu commented 3 years ago

In my machine:

Python 3.8.3 (default, Jul  2 2020, 16:21:59) 
[GCC 7.3.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
(ins)>>> import torch
(ins)>>> import torchvision
(ins)>>> torch.__version__
'1.6.0'
(ins)>>> torchvision.__version__
'0.7.0'
(ins)>>> torch.version.cuda
'10.1'

That really helps a lot!