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
self.parser.add_argument('--data_cfg', type=str,
default='../src/lib/cfg/data.json',
help='load data from cfg')
self.parser.add_argument('--data_dir', type=str, default='/content/FairMOT/src/data')
On running I get the following error
json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes: line 7 column 5 (char 101)
Because I only want to train and test on mot20 and not on other datasets I removed the part about other datasets from data.json file
Furthermore should the data_dir be set to where MOT20 is or should it be set to data in src directory.The same applies in data.json
Will appreciate it if you could clarify
The text was updated successfully, but these errors were encountered:
As mentioned in the readme,I have downloaded the MOT20 dataset and organized it as follows
Then inside gen_labels_20.py i have mentioned it as follows
Then finally I changed the dataset directories as mentioned in
the data.json looks like this
And in opts.py
the changes are as follows
On running I get the following error
Because I only want to train and test on mot20 and not on other datasets I removed the part about other datasets from data.json file
Furthermore should the data_dir be set to where MOT20 is or should it be set to data in src directory.The same applies in data.json
Will appreciate it if you could clarify
The text was updated successfully, but these errors were encountered: