Views
No views yet
DT_Lung/GRUA1F50_A2F50 – Collection of GRU models for static digital lung forecasting (Forecast 2nd hour lung function using 1st hour baseline data)A1F50_A3F50 – Collection of GRU models for static digital lung forecasting (Forecast 3rd hour lung function using 1st hour baseline data)A1F50A2F50_A3F50 – Collection of GRU models for dynamic digital lung forecasting (Forecast 3rd hour lung function using 1st and 2nd hour observed data)A = assessment period, F = first breaths, numbers = the number of breaths included DT_Lung/XGB – Collection of XGBoost models for multiple data modalitiesHourly – XGBoost models for predicting hourly lung functional parameters (e.g., oxygenation level, compliance, pH, etc.)
H1_to_H2: Models for static digital lung forecasting (Forecast 2nd hour lung function using 1st hour baseline data)H1_to_H3: Models for static digital lung forecasting (Forecast 3rd hour lung function using 1st hour baseline data)H1_H2_to_H3: Models for dynamic digital lung forecasting (Forecast 3rd hour lung function using 1st and 2nd hour observed data)Protein – XGBoost models for predicting protein markers (e.g., interleukin-8, interleukin-6, etc.)
H1_to_H2: Models for static digital lung forecasting (Forecast 2nd hour lung function using 1st hour baseline data)H1_to_H3: Models for static digital lung forecasting (Forecast 3rd hour lung function using 1st hour baseline data)H1_predH2_to_H3: Models for static digital lung forecasting (Forecast 3rd hour lung function using 1st hour baseline data and predicted 2nd hour data)H1_H2_to_H3: Models for dynamic digital lung forecasting (Forecast 3rd hour lung function using 1st and 2nd hour obsereved data)Transcriptomics – XGBoost models for predicting transcriptomic pathways (e.g., TGF-β, apoptosis, etc.)
static_forecasting: Models for static digital lung forecasting of gene enrichment scores (Forecast post-perfusion gene enrichment scores using baseline data)dynamic_forecasting: Models for dynamic digital lung forecasting of gene enrichment scores (Forecast post-perfusion gene enrichment scores using hourly observed data)DT_Lung/XGB_PC – Collection of XGBoost models for lung x-ray imagesmodels_static – XGBoost models to create static digital lung image features (Forecast 3rd hour lung X-ray derived features using 1st hour baseline data)models_dynamic – XGBoost models to create dynamic digital lung image features (Forecast 3rd hour lung X-ray derived features using 1st and 2nd hour observed data).tar.gz extension are provided to make model download and distribution easier. Their contents are identical to those in the corresponding folders without the .tar.gz extension.from huggingface_hub import hf_hub_download
gru_model_dir = hf_hub_download(
repo_id="SageLabUHN/DT_Lung",
filename="GRU/A1F50_A2F50/Dy_comp.pt", # example path, please modify accordingly
local_dir="DT_Lung/models" # example path, specify your local directory
)
print(f"Model downloaded to: {gru_model_dir}")from huggingface_hub import snapshot_download
model_dir = snapshot_download(
repo_id="SageLabUHN/DT_Lung",
local_dir="DT_Lung/Model", # make sure the Model folder is in the project root dir
)
print(f"Models downloaded to: {model_dir}")