File size: 213 Bytes
49a0d23 |
1 2 3 4 5 6 7 8 |
#!/usr/bin/env bash
set -eo pipefail
this_dir="$( cd "$( dirname "$0" )" && pwd )"
repo_dir="$(realpath "${this_dir}/../")"
find "${repo_dir}" -type f -name '*.onnx' -exec basename '{}' '.onnx' \; | sort | uniq
|