Closed yanghaibin-cool closed 3 years ago
I modified this place, but I still encountered errors: Ask for help online,thank you.
I modified this place, but I still encountered errors: Ask for help online,thank you.
The error message practically tells you a lot about the solution. There's a type mismatch. The DATASETS.TRAIN
key needs to be a tuple
, not a string
. You have to make it a single element tuple, thus:
...
TRAIN: ("MOT17",)
...
Notice the additional comma after the MOT17
string. That's what you are missing right now.
Thank you so much for helping me so many times.My goal was to train the model on MOT17.Then I have made some modifications to what you said: DLA_34_FPN_EMM_MOT17.yaml: train_net.py: The train-dir is the absolute path to the folder,I don't know if that's right: Then I ran into the following problem: Excuse me, what is the reason.Thank you.
I modified this place, but I still encountered errors: Ask for help online,thank you.
The error message practically tells you a lot about the solution. There's a type mismatch. The
DATASETS.TRAIN
key needs to be atuple
, not astring
. You have to make it a single element tuple, thus:... TRAIN: ("MOT17",) ...
Notice the additional comma after the
MOT17
string. That's what you are missing right now.
This is my train.py parameter configuration: This is my data structure: But I have this problem: I think there's something wrong here.But I do not know how to solve, ask for help, thank you