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
for i, (input, target) in enumerate(val_loader):
output = model(input)
batch_time.update(time.time() - end)
target = target.cuda(non_blocking=True)
loss = criterion(output, target)
in this I try with target variable, it shows correct values at train time, but at test time it shows the class label for image in which its stored. not accurate values. can anyone tell how to get class label values for "test.py" ? target variable shows inaccurate values at testing.
The text was updated successfully, but these errors were encountered:
I try with "HRNet-Image-Classification/lib/core/function
function.txt
.py" in this file, at line no. 104,
in this I try with target variable, it shows correct values at train time, but at test time it shows the class label for image in which its stored. not accurate values. can anyone tell how to get class label values for "test.py" ? target variable shows inaccurate values at testing.
The text was updated successfully, but these errors were encountered: