Skip to content

Commit

Permalink
Add version 9B instead of 9
Browse files Browse the repository at this point in the history
  • Loading branch information
ibacher committed May 17, 2024
1 parent 8858b9e commit b7d4fb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN install2.r --error --skipinstalled \
RUN Rscript -e "remotes::install_version('h2o', '3.42.0.2')"

# Add the prediction model to the app
COPY IIT-Prediction/model/V9 /app/model
COPY IIT-Prediction/model/V9B /app/model
# Add the production extraction query to the app
COPY SQL/iit_prod_data_extract.sql /app/iit_prod_data_extract.sql

Expand Down
4 changes: 2 additions & 2 deletions docker-resources/plumber.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ ml_model_version <- "V9"
# now we load the models into the h2o server instance
# adult model
ml_model_adult <- h2o.loadModel(
"/app/model/y0_1days_adult_IIT/2_StackedEnsemble_BestOfFamily_1_AutoML_8_20240411_135528_auc_0.739/StackedEnsemble_BestOfFamily_1_AutoML_8_20240411_135528"
"/app/model/y0_1days_adult_IIT/2_StackedEnsemble_BestOfFamily_1_AutoML_1_20240513_202609_auc_0.783/StackedEnsemble_BestOfFamily_1_AutoML_1_20240513_202609"
)

# peds model
ml_model_minor <- h2o.loadModel(
"/app/model/y0_1days_minor_IIT/1_StackedEnsemble_AllModels_1_AutoML_6_20240329_151542_auc_0.721/StackedEnsemble_AllModels_1_AutoML_6_20240329_151542"
"/app/model/y0_1days_minor_IIT/2_StackedEnsemble_BestOfFamily_1_AutoML_2_20240513_235011_auc_0.725/StackedEnsemble_BestOfFamily_1_AutoML_2_20240513_235011"
)

# we also load the SQL query we use to generate the dataframe of records for prediction
Expand Down

0 comments on commit b7d4fb2

Please sign in to comment.