We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pytorch version: 0.4.0 pandas version: 0.24.1
python3 train.py config/example.yaml 123 --> Experiment: example_sd_123 Training Set: Total 2 files Malware Count : 1 Goodware Count: 1 Validation Set: Total 2 files Malware Count : 1 Goodware Count: 1 Traceback (most recent call last): File "train.py", line 151, in history['tr_loss'].append(loss.cpu().data.numpy()[0]) IndexError: too many indices for array
The text was updated successfully, but these errors were encountered:
I changed it.
File "train.py", line 151, in history['tr_loss'].append(loss.cpu().data.numpy()[0]) --> history['tr_loss'].append(loss.cpu().data.numpy())
File "train.py", line 183, in history['val_loss'].append(loss.cpu().data.numpy()[0]) --> history['val_loss'].append(loss.cpu().data.numpy())
Sorry, something went wrong.
No branches or pull requests
pytorch version: 0.4.0
pandas version: 0.24.1
python3 train.py config/example.yaml 123
-->
Experiment:
example_sd_123
Training Set:
Total 2 files
Malware Count : 1
Goodware Count: 1
Validation Set:
Total 2 files
Malware Count : 1
Goodware Count: 1
Traceback (most recent call last):
File "train.py", line 151, in
history['tr_loss'].append(loss.cpu().data.numpy()[0])
IndexError: too many indices for array
The text was updated successfully, but these errors were encountered: