diff options
| -rw-r--r-- | analysis/README.md | 1 | ||||
| -rw-r--r-- | analysis/offline.R | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/analysis/README.md b/analysis/README.md index 75b0ac5..5930997 100644 --- a/analysis/README.md +++ b/analysis/README.md @@ -5,6 +5,7 @@ - kmeans.R: Just here for doing some tests - offline.R: contains two major functions: - build_models: To generate K-fold cross-validation results (note that hyper-parameters for decisions tree is fixed (no validation set)) + - Generate Table II and III - generate_inputs: generate the inputs for the simulations experiments + the decision tree plots - Generate Fig 5 (decision tree nodes) - in-situ.R: Implement the in-situ learning approach (Figure 4a 4b and 4c) diff --git a/analysis/offline.R b/analysis/offline.R index c63ddbe..6431326 100644 --- a/analysis/offline.R +++ b/analysis/offline.R @@ -209,6 +209,10 @@ generate_inputs=function(ignore_hint=FALSE) { } +## Build models and generate performance metrics +build_models(ignore_hint=FALSE) +build_models(ignore_hint=TRUE) + ## Generate inputs generate_inputs(ignore_hint=FALSE) generate_inputs(ignore_hint=TRUE) |
