Skip to content

Commit

Permalink
Update headers in form
Browse files Browse the repository at this point in the history
  • Loading branch information
Bergam0t committed Dec 12, 2023
1 parent 161cac5 commit 71fa693
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions nb_4_full_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -86,44 +86,47 @@
"# General Details\n",
"\n",
"# @markdown ---\n",
"# @markdown ### Set the number of triage bays\n",
"# @markdown ### Overall Emergency Department Settings\n",
"# @markdown #### Set the number of triage bays\n",
"n_triage = 3 # @param {type:\"slider\", min:1, max:10, step:1}\n",
"# @markdown ### Set the probability that a client arriving is a trauma patient (0 = no-one is a trauma patient, 1 = everyone is a trauma patient)\n",
"# @markdown #### Set the probability that a client arriving is a trauma patient (0 = no-one is a trauma patient, 1 = everyone is a trauma patient)\n",
"prob_trauma = 0.3 # @param {type:\"slider\", min:0, max:1, step:0.01}\n",
"\n",
"###################################\n",
"\n",
"# Trauma pathway details\n",
"\n",
"# @markdown ---\n",
"# @markdown ### Set the number of trauma stabilisation cubicles\n",
"# @markdown ### Trauma Pathway Settings\n",
"# @markdown #### Set the number of trauma stabilisation cubicles\n",
"n_trauma = 6 # @param {type:\"slider\", min:1, max:10, step:1}\n",
"# @markdown ### Set the number of trauma treatment cubicles\n",
"# @markdown #### Set the number of trauma treatment cubicles\n",
"n_cubicles_2 = 6 # @param {type:\"slider\", min:1, max:10, step:1}\n",
"\n",
"###################################\n",
"\n",
"# Non-trauma pathway details\n",
"\n",
"# @markdown ---\n",
"# @markdown ### Set the number of non-trauma registration bays\n",
"# @markdown ### Non-trauma pathway settings\n",
"# @markdown #### Set the number of non-trauma registration bays\n",
"n_reg = 3 # @param {type:\"slider\", min:1, max:10, step:1}\n",
"# @markdown ### Set the number of non-trauma examination rooms\n",
"# @markdown #### Set the number of non-trauma examination rooms\n",
"n_exam = 7 # @param {type:\"slider\", min:1, max:10, step:1}\n",
"# @markdown ### Set the number of non-trauma treatment cubicles\n",
"# @markdown #### Set the number of non-trauma treatment cubicles\n",
"n_cubicles_1 = 2 # @param {type:\"slider\", min:1, max:10, step:1} # Probability that a generated non-trauma patient is a trauma patient (set between 0 and 1). DEFAULT: 0.7\n",
"# @markdown ### Set the probability that a client arriving is a trauma patient (0 = no-one on the non-trauma pathway needs treatment, 1 = everyone on the non-trauma pathway needs treatment)\n",
"# @markdown #### Set the probability that a client arriving is a trauma patient (0 = no-one on the non-trauma pathway needs treatment, 1 = everyone on the non-trauma pathway needs treatment)\n",
"non_trauma_treat_p = 0.7 # @param {type:\"slider\", min:0, max:1, step:0.01}\n",
"\n",
"###################################\n",
"\n",
"\n",
"# @markdown ---\n",
"# @markdown ## Model Settings\n",
"# @markdown ### Model Settings\n",
"# @markdown WARNING: Adjusting the n_reps and run_time days upwards will make the model take significantly longer to run.\n",
"# @markdown ### Set the random seed\n",
"# @markdown #### Set the random seed\n",
"seed = 42 # @param {type:\"integer\"}\n",
"# @markdown ### Set the number of model replications\n",
"# @markdown #### Set the number of model replications\n",
"n_reps = 3 # @param {type:\"slider\", min:0, max:10, step:1}\n",
"# @markdown ### Set the number of simulated days the model will run for\n",
"# @markdown #### Set the number of simulated days the model will run for\n",
"run_time_days = 5 # @param {type:\"slider\", min:0, max:30, step:1}"
]
},
Expand Down

0 comments on commit 71fa693

Please sign in to comment.