-
Notifications
You must be signed in to change notification settings - Fork 43
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
Pre-Processing the Original Dataset #28
Comments
Hi @jiali222333 You can find the preprocessing script here. The network is trained and evaluated at 20 Hz so the script extracts both the event representations and labels (when available) at that frequency. You have to adapt the code to process the dataset for a different frequency. I can't test this for you right now because I am busy but feel free to check out the code yourself. |
Hi@magehrig But in my own data set, the following situation occurred so, could you please briefly describe the idea of preprocessing? |
objframe_idx_2_repr_idx is a list that can be used similarly to a dictionary/hash-map that maps the label index (all labels associated with a timestamp represented by an index) to the corresponding representation index. That is That means that if you have both the labels at 60Hz and the event representations at 60 Hz objframe_idx_2_repr_idx should be [0, 1, 2, 3, 4, ...]. However, this depends on how exactly your data looks like and the frequency of your event representations. Hope that helps to understand how that works. Btw there is another issue with a similar question. See my answer. |
Hello, I'd like to learn more specifically about the processing of the Gen4 dataset. Since the label files in the Gen4 dataset have frame rates of 30 and 60, I'd like to know how to preprocess the data for label datasets with a frame rate of 60.
The text was updated successfully, but these errors were encountered: