I am optimizing several different models, one of which is radialSVM using the package caret. I am creating a tuning grid in preparation for the loop cycle to find the best parameters used for the model.
One thing that would be extremely useful is some sort of variable increment sequence. For example, I would like to start with small parameter values increasing with small steps. The more I walk, the more steps I can take. I found that small parameters change the model a bit, so I would like to study them more carefully.
It would be fantastic to have the sequence increment by some factor of the current step, say x <- x+5*x. Is this possible with something that already exists (e.g. creative use seq()), or do I need to use a loop?
source
share