Revision f722e122f723ec37b95aa669a1f60f53260e0f71 authored by Matthias Bernt on 08 June 2023, 13:54:28 UTC, committed by Matthias Bernt on 08 June 2023, 13:54:28 UTC
1 parent 1ee21e3
Raw File
extract_dataset_parts.sh
#!/bin/sh

cd "$(dirname "$0")"

. ./scripts/common_startup_functions.sh

setup_python

for file in $1/split_info*.json
do
    # echo processing $file
    python ./scripts/extract_dataset_part.py "$file"
done
back to top