-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* speed up data conversion about 3-5x * make sure tensorList matches dataset length * user integers for tensorList * fix tidyselect warnings * fix numericalIndex and address pull warning * Allow dimToken and numHeads to take the form of vectors * Modeltype fix (#48) * added modelType to modelSettings * update default ResNet and Transformer to have custom LR and WD * Add seed for sampling hyperparameter combinations (#50) * Suppress warnings message due to NULL seed * add LRfinder, add setEstimator function for all estimator parameters, add metric to earlystopper. Adjust tests for setEstimator (#51) * add tests for coverage * add custom metric for scheduler/earlyStopping * Derive dimension of feedforward block from embedding dimension (#53) * Add dimHiddenRatio parameter to Transformer * Update Transformer documentation * Divisible check for Transformer not comprehensive (#55) * Update Transformer tests * Update NEWS.md * update website and docs * fix badge in readme --------- Co-authored-by: Henrik John <[email protected]>
- Loading branch information
Showing
65 changed files
with
1,076 additions
and
5,147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
Package: DeepPatientLevelPrediction | ||
Type: Package | ||
Title: Deep Learning For Patient Level Prediction Using Data In The OMOP Common Data Model | ||
Version: 1.0.2 | ||
Version: 1.1.0 | ||
Date: 15-12-2022 | ||
Authors@R: c( | ||
person("Jenna", "Reps", email = "[email protected]", role = c("aut")), | ||
person("Egill", "Fridgeirsson", email = "[email protected]", role = c("aut", "cre")), | ||
person("Jenna", "Reps", email = "[email protected]", role = c("aut")), | ||
person("Seng", "Chan You", role = c("aut")), | ||
person("Chungsoo", "Kim", role = c("aut")), | ||
person("Henrik", "John", role = c("aut")) | ||
|
@@ -17,26 +17,28 @@ URL: https://github.com/OHDSI/DeepPatientLevelPrediction | |
BugReports: https://github.com/OHDSI/DeepPatientLevelPrediction/issues | ||
VignetteBuilder: knitr | ||
Depends: | ||
R (>= 3.5.0) | ||
R (>= 4.0.0) | ||
Imports: | ||
dplyr, | ||
data.table, | ||
FeatureExtraction (>= 3.0.0), | ||
ParallelLogger (>= 2.0.0), | ||
PatientLevelPrediction (>= 6.0.4), | ||
rlang, | ||
torch (>= 0.8.0) | ||
torch (>= 0.9.0), | ||
torchopt, | ||
withr | ||
Suggests: | ||
devtools, | ||
Eunomia, | ||
knitr, | ||
markdown, | ||
plyr, | ||
testthat | ||
testthat, | ||
PRROC | ||
Remotes: | ||
ohdsi/PatientLevelPrediction, | ||
ohdsi/FeatureExtraction, | ||
ohdsi/Eunomia | ||
RoxygenNote: 7.2.1 | ||
RoxygenNote: 7.2.3 | ||
Encoding: UTF-8 | ||
Config/testthat/edition: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.