Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,5 @@ jobs:
--var "databricks_institution_name=synthetic_integration" \
--var "datakind_notification_email=${{ secrets.DATAKIND_EMAIL }}" \
--var "DK_CC_EMAIL=${{ secrets.DATAKIND_EMAIL }}" \
--params "model_name=synthetic_integration_retention_2_year_time_first_within_cohort,model_type=h2o,config_file_name=${CONFIG_FILE},job_type=inference,db_run_id=${DB_RUN_ID_PREFIX}_inference"
--params "model_name=synthetic_integration_retention_2_year_time_first_within_cohort,config_file_name=${CONFIG_FILE},job_type=inference,db_run_id=${DB_RUN_ID_PREFIX}_inference"

2 changes: 1 addition & 1 deletion .github/workflows/weekly-develop-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ jobs:
--var "databricks_institution_name=synthetic_integration" \
--var "datakind_notification_email=${{ secrets.DATAKIND_EMAIL }}" \
--var "DK_CC_EMAIL=${{ secrets.DATAKIND_EMAIL }}" \
--params "model_name=synthetic_integration_retention_2_year_time_first_within_cohort,model_type=h2o,config_file_name=${CONFIG_FILE},job_type=inference,db_run_id=${DB_RUN_ID_PREFIX}_inference"
--params "model_name=synthetic_integration_retention_2_year_time_first_within_cohort,config_file_name=${CONFIG_FILE},job_type=inference,db_run_id=${DB_RUN_ID_PREFIX}_inference"
126 changes: 0 additions & 126 deletions configs/custom/config-TEMPLATE.toml

This file was deleted.

1 change: 0 additions & 1 deletion configs/custom_h2o/config-TEMPLATE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ predict_table_path = "CATALOG.INST_ID_gold.INST_ID_predictions"
[model]
experiment_id = "EXPERIMENT_ID"
run_id = "RUN_ID"
framework = "h2o"
calibrate = false

[preprocessing]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ raw_cohort = "FILE_NAME_COHORT.csv"
[model]
experiment_id = "EXPERIMENT_ID"
run_id = "RUN_ID"
framework = "sklearn"

[preprocessing]
splits = { train = 0.6, test = 0.2, validate = 0.2 }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ raw_cohort = "FILE_NAME_COHORT.csv"
[model]
experiment_id = "EXPERIMENT_ID"
run_id = "RUN_ID"
framework = "sklearn"

[preprocessing]
splits = { train = 0.6, test = 0.2, validate = 0.2 }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,17 @@ raw_cohort = "FILE_NAME_COHORT.csv"
[model]
experiment_id = "EXPERIMENT_ID"
run_id = "RUN_ID"
framework = "sklearn"
calibrate_underpred = false

[preprocessing]
splits = { train = 0.6, test = 0.2, validate = 0.2 }
sample_class_weight = "balanced"
# TODO: change to true if school wants otherwise
include_pre_cohort_courses = false

[preprocessing.features]
min_passing_grade = 1.0
min_num_credits_full_time = 12
course_level_pattern = '^(?:[A-Z_-]+)?(?P<course_level>\d)\d{2}(?:-?[A-Z\d]+)?$'
course_level_pattern = '^(?:[A-Z_-]+)?(?P<course_level>\d)\d{2}(?:-?[A-Z\d]+)?$'
core_terms = ["FALL", "SPRING"]
key_course_subject_areas = []
key_course_ids = []
Expand Down Expand Up @@ -59,9 +58,9 @@ collinear_threshold = 10.0
# force_include_cols = []

[modeling.training]
primary_metric = "log_loss"
primary_metric = "logloss"
timeout_minutes = 10
# exclude_frameworks = ["xgboost", "lightgbm"]
# exclude_frameworks = ["XGBoost", "GBM"]
# exclude_cols = []

[modeling.evaluation]
Expand All @@ -70,4 +69,5 @@ topn_runs_included = 5
[inference]
num_top_features = 5
min_prob_pos_label = 0.5
background_data_sample = 500
cohort = ['fall 2024-25']
74 changes: 0 additions & 74 deletions configs/pdp_h2o/config-TEMPLATE.toml

This file was deleted.

3 changes: 0 additions & 3 deletions pipelines/pdp/databricks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ variables:
model_name:
description: "Name of the model once it's registered and ready to be used for inference"
default: ""
model_type:
description: "Type of model; sklearn vs. h2o"
default: "h2o"

run_as:
service_principal_name: ${var.ds_run_as}
Expand Down
Loading
Loading