Skip to content

Commit 07e7c73

Browse files
committed
small fixes
1 parent b039df1 commit 07e7c73

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

recipes/MOABB/extra_requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
braindecode
12
mne
23
moabb
34
orion[profet]

recipes/MOABB/run_experiments.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,11 @@ fi
173173
if [ "$rnd_dir" = True ]; then
174174
rnd_dirname=$(tr -dc 'a-zA-Z' < /dev/urandom | head -c 6)
175175
output_folder="$output_folder/$rnd_dirname"
176-
mkdir -p $output_folder
177176
fi
178177

178+
# Make sure the output_folder is created
179+
mkdir -p $output_folder
180+
179181
# Print command line arguments and save to file
180182
{
181183
echo "hparams: $hparams"

recipes/MOABB/run_hparam_optimization.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
# - Davide Borra (2023)
4747
###########################################################
4848

49-
5049
# Initialize variables
5150
exp_name=""
5251
output_folder=""
@@ -65,8 +64,8 @@ mne_dir=""
6564
orion_db_address=""
6665
orion_db_type="PickledDB"
6766
exp_max_trials=50
68-
store_all=False
69-
compress_exp=False
67+
store_all=True
68+
compress_exp=True
7069

7170
# Function to print argument descriptions and exit
7271
print_argument_descriptions() {

0 commit comments

Comments
 (0)