Last active
July 9, 2021 07:05
-
-
Save mrtj/4e77da315c6d2223ac13a2e0ed7d0be8 to your computer and use it in GitHub Desktop.
Search for a given action in the Kinetics human activity dataset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
cat train.csv | sed 's/ /_/g' | sed 's/,/ /g' | awk '{print $1}' | grep "$1" | sort | uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This script lists or searches for actions in the Kinetics human activity dataset.
chmod +x kinetics_actions.sh