About the number of key frames used
See original GitHub issueHi! Thank you for your code and sorry to bother again.
I checked your log and found that in AVA logs, the key frames used are:
[INFO: ava.py: 101]: Number of unique boxes: 666191
[INFO: ava.py: 102]: Number of annotations: 1607900
[INFO: ava.py: 123]: 193301 keyframes used.
However, when I ran your code (ava_train_v2.1.csv
and ava_train_predicted_boxes.csv
are downloaded accroding to your instructions), my output log looks like:
[INFO: ava.py: 101]: Number of unique boxes: 664550
[INFO: ava.py: 102]: Number of annotations: 1603805
[INFO: ava.py: 123]: 193296 keyframes used.
I also took out the code snippet of load_boxes_and_labels()
in ava.py
and ran it, getting the same results.
I’m wondering where the difference comes from. Thanks a lot!
Issue Analytics
- State:
- Created 4 years ago
- Comments:11
Top Results From Across the Web
Key frame - Wikipedia
In animation and filmmaking, a key frame (or keyframe) is a drawing or shot that defines the starting and ending points of a...
Read more >Keyframes, InterFrame & Video Compression
The keyframe (i-frame) is the full frame of the image in a video. Subsequent frames, the delta frames, only contain the information that...
Read more >keyframes - CSS: Cascading Style Sheets - MDN Web Docs
The @keyframes CSS at-rule controls the intermediate steps in a CSS animation sequence by defining styles for keyframes (or waypoints) along ...
Read more >What are Keyframes in Animation — Origins and Modern ...
A keyframe, also written as “key frame”, is something that defines the starting and/or ending point of any smooth transition.
Read more >What Are Keyframes In Animation: Essential Guide ...
A keyframe is a specific frame in an animation that acts as a starting point. It can be keyframes that are used to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi, @chenz97 @chaoyuaw Issue #16 may lead to this problem.
When I ran the original code with the new version csv file, the number of key frames used is
193296
. After modifying the code, the number of key frames used is193301
.Hi @wjchaoGit , thank you very much!! That’s it!
Hi @chaoyuaw , yes, the issue gets fixed! Thank you for your help with great patience!!