Skip to content

Commit

Permalink
fix calling of getModelInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
egillax committed Aug 14, 2024
1 parent 67041d9 commit dfc9190
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Main.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.


PatientLevelPredictionValidationModule <- R6::R6Class(
classname = "PatientLevelPredictionValidationModule",
inherit = Strategus::StrategusModule,
Expand All @@ -39,7 +40,7 @@ PatientLevelPredictionValidationModule <- R6::R6Class(

# hack to use output folder for model transfer
modelSaveLocation <- file.path(upperResultDir, modelTransferFolder, "models")
modelInfo <- getModelInfo(modelSaveLocation)
modelInfo <- private$getModelInfo(modelSaveLocation)

designs <- list()
for (i in seq_len(nrow(modelInfo))) {
Expand Down

0 comments on commit dfc9190

Please sign in to comment.