while trying to finetune inception_V3 for my own dataset by changing the last fc layer like
last_layer =nn.Linear(n_inputs, len(classes))
inception_v3.fc = last_layer
after that when I train it got this error on this position
# on training loop
output = inception_v3(data)
# calculate the batch loss
loss = criterion(output, target)
Error is
AttributeError: 'tuple' object has no attribute 'log_softmax'
