get predictor data types from H2OModel
问题 I know that I can access the predictor names of an H2OModel via the @parameters slot, but can I access the predictor data types ? I'm trying to generate an input schema for my h2OModel , and right now I have to cross-reference the training_frame and get data types from there. Obviously, this would be a problem if my training_frame was no longer in memory. Here's my current approach: getInputSchema <- function(model){ require(jsonlite) require(h2o) training_frame <- h2o.getFrame(model