#!/bin/bash

# file: $NEDC_NFC/bin/nedc_eeg_resnet
#
# revision history:
#
# 20211119 (PM): refactored code
# 20221030 (ML): refactored code
# 20211018 (JP): initial version
#
# A simple driver script that runs nedc_eeg_resnet from start to finish
# 

# Step 0 of 3: sets up the necessary environment variables to
# locate the src, lib, etc. directories.
#
./nedc_eeg_resnet_env

# Step 1 of 3: Train the model
#
./nedc_eeg_resnet_train

# Step 2 of 3: Decode the dataset
#
./nedc_eeg_resnet_decode

# Step 3 of 3: Score the models performance
#
./nedc_eeg_score

#
# end of file
