-
Notifications
You must be signed in to change notification settings - Fork 387
Expand file tree
/
Copy pathrun_BonsaiPredict_usps10.sh
More file actions
31 lines (23 loc) · 1 KB
/
run_BonsaiPredict_usps10.sh
File metadata and controls
31 lines (23 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT license.
# Have a look at README_BONSAI_OSS.md for details on how to setup the directory to run this script.
########################################################
# Input-output parameters
########################################################
input_dir="-D ./usps10"
input_format="-f 0"
model_dir="-M current_model" # Note: The model_dir has to be changed as Model naming is based on timestamp so required to be changed by the user
########################################################
# Data-dependent parameters
########################################################
ntest="-N 2007"
########################################################
# execute Bonsai
########################################################
#gdb=" gdb --args"
executable="./BonsaiPredict"
command=$gdb" "$executable" "$input_format" "$ntest" "$input_dir" "$model_dir
echo "Running Bonsai with following command: "
echo $command
echo ""
exec $command