bblodfon / survmob

An R package for benchmarking survival ML models on multi-omics data
Other
3 stars 0 forks source link

Make some R6 fields active bindings #5

Open bblodfon opened 1 year ago

bblodfon commented 1 year ago

So that someone can't change the result afterwards, e.g.

efs = eFS$new()
efs$run()
efs$n_features = 10
# then save the object and the result doesn't correspond to the n_features used during run() 

probably have a way to change these values as I do in tests (more privately though)