Closed nasirali1 closed 1 year ago
General Settings { "proximal_outcome_name": "(log) Next 30 min step count", => The name of the "proximal_outcome" "personalization_method": "Thompson Sampling - Two intervention option", => "ThompsonSampling" "intervention_component_name": "Activity suggestion" => The name of the "decision" } Intervention Settings { "condition_1": "Currently walking or running", => name of the "eligibility" "condition_2": "Finished an activity in the prev 90 min", => name of the "eligibility" "update_day": "Daily", => when function "update" is called "update_hour": "12:00am", => when function "update" is called "intervention_option_a": "Activity Suggestion", => name of "decision_options" with index 1 "intervention_option_b": "Do Nothing: No activity suggestion", => name of "decision_options" with index 0 "intervention_probability_lower_bound": "0.1", => "lower_clip" "intervention_probability_upper_bound": "0.8" => "upper_clip" } Model Settings {
"max_proximal_outcome": "8.0", => This is the upper bound for "proximal_outcome" (We can name this "proximal_outcome_max")
"min_proximal_outcome": "-0.69", => This is the lower bound for "proximal_outcome" (We can name this "proximal_outcome_min"
"proximal_outcome_type": "Continuous", => This is to check if the "proximal_outcome" is float
"intercept_prior_mean": "0", => "alpha_0_mu_bias"
"intercept_prior_standard_deviation": "10", => "alpha_0_sigma_bias"
"treatment_prior_mean": "0.13", => "beta_mu_bias"
"treatment_prior_standard_deviation": "0.07" => "beta_sigma_bias"
} Covariates { "2c201b1d-da6c-40e0-9b61-1da2ba81dfb1": { "covariate_name": "(log) Prior 30 min step count", => "feature_name" "covariate_type": "Continuous", => this is to check if "feature" is float "covariate_max_val": "8.0", => This is the upper bound for this feature (We can name this "feature_max") "covariate_min_val": "-0.69", => This is the lower bound for this feature (We can name this "feature_min") "tailoring_variable": "no", => "beta_selected_features" "main_effect_prior_mean": "0", => "alpha0_mu" "main_effect_prior_standard_deviation": "10" => "alpha0_sigma" }, "e96b404f-91c1-4f80-9228-96c6b4b2f594": { "covariate_name": "Location", => "feature_name" "covariate_type": "Binary", => this is to check if "feature" is binary "covariate_max_val": "1", => This is the upper bound for this feature (We can name this "feature_max") "covariate_min_val": "0", => This is the lower bound for this feature (We can name this "feature_min") "tailoring_variable": "yes", => "beta_selected_features" "covariate_meaning_0": "Home/Work", "covariate_meaning_1": "Unknown location", "main_effect_prior_mean": "01", => "alpha0_mu" "main_effect_prior_standard_deviation": "101", => "alpha0_sigma" "interaction_coefficient_prior_mean": "0", => "beta_mu" "interaction_coefficient_prior_standard_deviation": "10" => "beta_sigma" } }
Notes:
Please let me know if anything is unclear. Thanks so much!
Below are the variable names I am using. Feel free to correct any typo or change the name. You may comment your changes.
General Settings
Intervention Settings
Model Settings
Covariates