epic-kitchens-55-lib icon indicating copy to clipboard operation
epic-kitchens-55-lib copied to clipboard

:coffee: EPIC-KITCHENS-55 dataset python library

Results 9 epic-kitchens-55-lib issues
Sort by recently updated
recently updated
newest added

Bumps [numpy](https://github.com/numpy/numpy) from 1.17.0 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

Bumps [ipython](https://github.com/ipython/ipython) from 7.7.0 to 7.16.3. Commits d43c7c7 release 7.16.3 5fa1e40 Merge pull request from GHSA-pq7m-3gw7-gq5x 8df8971 back to dev 9f477b7 release 7.16.2 138f266 bring back release helper from master...

dependencies

Bumps [pygments](https://github.com/pygments/pygments) from 2.4.2 to 2.7.4. Release notes Sourced from pygments's releases. 2.7.4 Updated lexers: Apache configurations: Improve handling of malformed tags (#1656) CSS: Add support for variables (#1633, #1666)...

dependencies

Such that both EK-55 and EK-100 can be used throughout the lib

Support downloading for the new EPIC-Kitchens 100 annotations

We need to provide support for users to compute metrics for the EPIC-Kitchens 100 challenges.

small bug in `epic_kitchens.time.flow_frame_count(start_frame, stride, dilation)` if `start_frame == 1` it will return `-1`

The frame iterators in each modality only go up to the stop_frame - 1, these should probably be inclusive bounds i.e. `range(start_frame, stop_frame - 1)`. https://github.com/epic-kitchens/epic-lib/blob/master/epic_kitchens/video.py#L41 https://github.com/epic-kitchens/epic-lib/blob/master/epic_kitchens/video.py#L54 Spotted by @ekazakos