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
Hi,when I run train.py with my own dataset, the following errors occur
Traceback (most recent call last):
File "/data/james/lung/src/train.py", line 165, in
main()
File "/data/james/lung/src/train.py", line 135, in main
network_run.train()
File "/data/james/lung/src/run/trainer.py", line 294, in train
batch_output_data = batch_output_data[index_batch]
IndexError: index 25 is out of bounds for axis 0 with size 0
Can you help me solve the problem? Thank you very much!
The text was updated successfully, but these errors were encountered:
"IndexError: index 25 is out of bounds for axis 0 with size 0"
It seems that you are not loading/reading correctly the output data.
Please check the shape of the loaded input and output data inside the function load_dataset().
Hi,when I run train.py with my own dataset, the following errors occur
Traceback (most recent call last):
File "/data/james/lung/src/train.py", line 165, in
main()
File "/data/james/lung/src/train.py", line 135, in main
network_run.train()
File "/data/james/lung/src/run/trainer.py", line 294, in train
batch_output_data = batch_output_data[index_batch]
IndexError: index 25 is out of bounds for axis 0 with size 0
Can you help me solve the problem? Thank you very much!
The text was updated successfully, but these errors were encountered: