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
where local_rank is None, thus Invalid device string: 'cuda:None'. How is this supposed to work? The default of the function is local_rank=None which should be invalid, since it must be int, right? In evaluate() there is only local_rank: int.
By adding
local_rank=0rank=0print("WARNING! Overwriting local_rank and rank to 0!")
this issue is worked around.
The text was updated successfully, but these errors were encountered:
During training (Tesla V100-PCIE-16GB) I get the following error
Which traces to here
rtfm/rtfm/train_utils.py
Line 274 in 9884a6b
where
local_rank
is None, thusInvalid device string: 'cuda:None'
. How is this supposed to work? The default of the function islocal_rank=None
which should be invalid, since it must be int, right? Inevaluate()
there is onlylocal_rank: int
.By adding
this issue is worked around.
The text was updated successfully, but these errors were encountered: