-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
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
support for ms coco dataset #13
base: master
Are you sure you want to change the base?
Conversation
for row_number in range(len(column)): | ||
box_tmp = reader[column[row_number]][:] | ||
row_data.append(np.transpose(box_tmp)) | ||
boxes = row_data |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be boxes.append(row_data)
?
@rohitgirdhar It's the results of debugging. I don't know why it should be like that. There are two variables in the mat file. One is a cell array of path strings, and the other is a cell array of matrices (bbox). |
@raingo Could you please share your trained models for COCO? |
I've been working on a COCO baseline and have posted the code to the coco branch. My version of |
a working copy of voc_pascal.py for Microsoft COCO dataset.
COCO dataset should be setup by data/coco/PythonAPI/init.py
Trained models will be shared soon.