#!/bin/bash
subject=6
DIR=~/eeg-datasets/spampinato/preprocessed/spampinato
unbuff >before-our-block-inception_v3-encodings.txt \
python joint.py \
       -iv image \
       -rf before-our-block-inception_v3-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c inception_v3 \
       -gpu 0 \
       -ce 0 \
       -b 16&
unbuff >before-our-block-resnet101-encodings.txt \
python joint.py \
       -iv image \
       -rf before-our-block-resnet101-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c resnet101 \
       -gpu 1 \
       -ce 0 \
       -b 16&
unbuff >before-our-block-densenet161-encodings.txt \
python joint.py \
       -iv image \
       -rf before-our-block-densenet161-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c densenet161 \
       -gpu 2 \
       -ce 0 \
       -b 14&
unbuff >before-our-block-alexnet-encodings.txt \
python joint.py \
       -iv image \
       -rf before-our-block-alexnet-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c alexnet \
       -gpu 3 \
       -ce 0 \
       -b 16&

DIR=~/common/documentation/tpami2019/released/data
unbuff >before-their-inception_v3-encodings.txt \
python joint.py \
       -iv spampinato \
       -rf before-their-inception_v3-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c inception_v3 \
       -gpu 4 \
       -ce 0 \
       -b 16&
unbuff >before-their-resnet101-encodings.txt \
python joint.py \
       -iv spampinato \
       -rf before-their-resnet101-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c resnet101 \
       -gpu 5 \
       -ce 0 \
       -b 16&
unbuff >before-their-densenet161-encodings.txt \
python joint.py \
       -iv spampinato \
       -rf before-their-densenet161-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c densenet161 \
       -gpu 6 \
       -ce 0 \
       -b 12&
unbuff >before-their-alexnet-encodings.txt \
python joint.py \
       -iv spampinato \
       -rf before-their-alexnet-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c alexnet \
       -gpu 7 \
       -ce 0 \
       -b 16&
wait

DIR=~/eeg-datasets/spampinato/preprocessed/spampinato
unbuff >before-our-randomized-inception_v3-encodings.txt \
python joint.py \
       -iv image \
       -rf before-our-randomized-inception_v3-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c inception_v3 \
       -gpu 0 \
       -ce 0 \
       -b 16&
unbuff >before-our-randomized-resnet101-encodings.txt \
python joint.py \
       -iv image \
       -rf before-our-randomized-resnet101-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c resnet101 \
       -gpu 1 \
       -ce 0 \
       -b 16&
unbuff >before-our-randomized-densenet161-encodings.txt \
python joint.py \
       -iv image \
       -rf before-our-randomized-densenet161-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c densenet161 \
       -gpu 2 \
       -ce 0 \
       -b 14&
unbuff >before-our-randomized-alexnet-encodings.txt \
python joint.py \
       -iv image \
       -rf before-our-randomized-alexnet-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c alexnet \
       -gpu 3 \
       -ce 0 \
       -b 16&
wait

DIR=~/eeg-datasets/spampinato/preprocessed/spampinato
unbuff >after-joint-our-block-inception_v3-encodings.txt \
python joint.py \
       -iv image \
       -rf after-joint-our-block-inception_v3-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c inception_v3 \
       -gpu 0 \
       -b 16&
unbuff >after-joint-our-block-resnet101-encodings.txt \
python joint.py \
       -iv image \
       -rf after-joint-our-block-resnet101-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c resnet101 \
       -gpu 1 \
       -b 16&
unbuff >after-joint-our-block-densenet161-encodings.txt \
python joint.py \
       -iv image \
       -rf after-joint-our-block-densenet161-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c densenet161 \
       -gpu 2 \
       -b 14&
unbuff >after-joint-our-block-alexnet-encodings.txt \
python joint.py \
       -iv image \
       -rf after-joint-our-block-alexnet-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c alexnet \
       -gpu 3 \
       -b 16&

DIR=~/common/documentation/tpami2019/released/data
unbuff >after-joint-their-inception_v3-encodings.txt \
python joint.py \
       -iv spampinato \
       -rf after-joint-their-inception_v3-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c inception_v3 \
       -gpu 4 \
       -b 16&
unbuff >after-joint-their-resnet101-encodings.txt \
python joint.py \
       -iv spampinato \
       -rf after-joint-their-resnet101-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c resnet101 \
       -gpu 5 \
       -b 16&
unbuff >after-joint-their-densenet161-encodings.txt \
python joint.py \
       -iv spampinato \
       -rf after-joint-their-densenet161-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c densenet161 \
       -gpu 6 \
       -b 12&
unbuff >after-joint-their-alexnet-encodings.txt \
python joint.py \
       -iv spampinato \
       -rf after-joint-their-alexnet-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c alexnet \
       -gpu 7 \
       -b 16&
wait

DIR=~/eeg-datasets/spampinato/preprocessed/spampinato
unbuff >after-joint-our-randomized-inception_v3-encodings.txt \
python joint.py \
       -iv image \
       -rf after-joint-our-randomized-inception_v3-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c inception_v3 \
       -gpu 0 \
       -b 16&
unbuff >after-joint-our-randomized-resnet101-encodings.txt \
python joint.py \
       -iv image \
       -rf after-joint-our-randomized-resnet101-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c resnet101 \
       -gpu 1 \
       -b 16&
unbuff >after-joint-our-randomized-densenet161-encodings.txt \
python joint.py \
       -iv image \
       -rf after-joint-our-randomized-densenet161-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c densenet161 \
       -gpu 2 \
       -b 14&
unbuff >after-joint-our-randomized-alexnet-encodings.txt \
python joint.py \
       -iv image \
       -rf after-joint-our-randomized-alexnet-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c alexnet \
       -gpu 3 \
       -b 16&
wait

DIR=~/eeg-datasets/spampinato/preprocessed/spampinato
unbuff >after-separate-our-block-inception_v3-encodings.txt \
python separate.py \
       -iv image \
       -rf after-separate-our-block-inception_v3-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c inception_v3 \
       -gpu 0 \
       -b 16&
unbuff >after-separate-our-block-resnet101-encodings.txt \
python separate.py \
       -iv image \
       -rf after-separate-our-block-resnet101-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c resnet101 \
       -gpu 1 \
       -b 16&
unbuff >after-separate-our-block-densenet161-encodings.txt \
python separate.py \
       -iv image \
       -rf after-separate-our-block-densenet161-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c densenet161 \
       -gpu 2 \
       -b 14&
unbuff >after-separate-our-block-alexnet-encodings.txt \
python separate.py \
       -iv image \
       -rf after-separate-our-block-alexnet-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c alexnet \
       -gpu 3 \
       -b 16&

DIR=~/common/documentation/tpami2019/released/data
unbuff >after-separate-their-inception_v3-encodings.txt \
python separate.py \
       -iv spampinato \
       -rf after-separate-their-inception_v3-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c inception_v3 \
       -gpu 4 \
       -b 16&
unbuff >after-separate-their-resnet101-encodings.txt \
python separate.py \
       -iv spampinato \
       -rf after-separate-their-resnet101-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c resnet101 \
       -gpu 5 \
       -b 16&
unbuff >after-separate-their-densenet161-encodings.txt \
python separate.py \
       -iv spampinato \
       -rf after-separate-their-densenet161-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c densenet161 \
       -gpu 6 \
       -b 12&
unbuff >after-separate-their-alexnet-encodings.txt \
python separate.py \
       -iv spampinato \
       -rf after-separate-their-alexnet-encodings.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c alexnet \
       -gpu 7 \
       -b 16&
wait

DIR=~/eeg-datasets/spampinato/preprocessed/spampinato
unbuff >after-separate-our-randomized-inception_v3-encodings.txt \
python separate.py \
       -iv image \
       -rf after-separate-our-randomized-inception_v3-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c inception_v3 \
       -gpu 0 \
       -b 16&
unbuff >after-separate-our-randomized-resnet101-encodings.txt \
python separate.py \
       -iv image \
       -rf after-separate-our-randomized-resnet101-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c resnet101 \
       -gpu 1 \
       -b 16&
unbuff >after-separate-our-randomized-densenet161-encodings.txt \
python separate.py \
       -iv image \
       -rf after-separate-our-randomized-densenet161-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c densenet161 \
       -gpu 2 \
       -b 14&
unbuff >after-separate-our-randomized-alexnet-encodings.txt \
python separate.py \
       -iv image \
       -rf after-separate-our-randomized-alexnet-encodings.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c alexnet \
       -gpu 3 \
       -b 16&
wait

DIR=~/eeg-datasets/spampinato/preprocessed/spampinato
unbuff >after-joint-our-block-inception_v3-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv image \
       -rf after-joint-our-block-inception_v3-encodings-no-pretraining.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c inception_v3 \
       -gpu 0 \
       -b 16&
unbuff >after-joint-our-block-resnet101-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv image \
       -rf after-joint-our-block-resnet101-encodings-no-pretraining.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c resnet101 \
       -gpu 1 \
       -b 16&
unbuff >after-joint-our-block-densenet161-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv image \
       -rf after-joint-our-block-densenet161-encodings-no-pretraining.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c densenet161 \
       -gpu 2 \
       -b 14&
unbuff >after-joint-our-block-alexnet-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv image \
       -rf after-joint-our-block-alexnet-encodings-no-pretraining.pkl \
       -s $subject \
       -ed $DIR-$subject-image-first-block-no-bandpass.pth \
       -sp $DIR-$subject-image-first-block-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c alexnet \
       -gpu 3 \
       -b 16&

DIR=~/common/documentation/tpami2019/released/data
unbuff >after-joint-their-inception_v3-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv spampinato \
       -rf after-joint-their-inception_v3-encodings-no-pretraining.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c inception_v3 \
       -gpu 4 \
       -b 16&
unbuff >after-joint-their-resnet101-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv spampinato \
       -rf after-joint-their-resnet101-encodings-no-pretraining.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c resnet101 \
       -gpu 5 \
       -b 16&
unbuff >after-joint-their-densenet161-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv spampinato \
       -rf after-joint-their-densenet161-encodings-no-pretraining.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c densenet161 \
       -gpu 6 \
       -b 12&
unbuff >after-joint-their-alexnet-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv spampinato \
       -rf after-joint-their-alexnet-encodings-no-pretraining.pkl \
       -s 1 \
       -ed $DIR/eeg_signals_128_sequential_band_all_with_mean_std.pth \
       -sp $DIR/splits_by_image.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 6 \
       -c alexnet \
       -gpu 7 \
       -b 16&
wait

DIR=~/eeg-datasets/spampinato/preprocessed/spampinato
unbuff >after-joint-our-randomized-inception_v3-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv image \
       -rf after-joint-our-randomized-inception_v3-encodings-no-pretraining.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c inception_v3 \
       -gpu 0 \
       -b 16&
unbuff >after-joint-our-randomized-resnet101-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv image \
       -rf after-joint-our-randomized-resnet101-encodings-no-pretraining.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c resnet101 \
       -gpu 1 \
       -b 16&
unbuff >after-joint-our-randomized-densenet161-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv image \
       -rf after-joint-our-randomized-densenet161-encodings-no-pretraining.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c densenet161 \
       -gpu 2 \
       -b 14&
unbuff >after-joint-our-randomized-alexnet-encodings-no-pretraining.txt \
python joint.py \
       --no-pretraining \
       -iv image \
       -rf after-joint-our-randomized-alexnet-encodings-no-pretraining.pkl \
       -s $subject \
       -ed $DIR-$subject-image-rapid-event-no-bandpass.pth \
       -sp $DIR-$subject-image-rapid-event-no-bandpass_split.pth \
       -ip ~/eeg-experiments/spampinato/design/original-images \
       -f 5 \
       -c alexnet \
       -gpu 3 \
       -b 16&
wait
