0

I'm interested in locally removing these two dependencies in the "regr.svm" learner code:

Dependency 1: Cost

Dependency 2: Epsilon

I have tried without success with the trace() function:

trace(LearnerRegrSVM.R, edit = TRUE)

I opened a related issue on Gitgub a few days ago, but I have not received a response.

  • 1
    It's easier to help you if you include a simple [reproducible example](https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) with sample input and desired output that can be used to test and verify possible solutions. It's not clear what you are trying to do. – MrFlick Oct 05 '21 at 17:15

1 Answers1

0

{mlr3} learners are wrappers around the original implementations and are not editable by the user.

If something is wrong, you are always welcome to submit a PR in the respective GitHub repo and we'll have a look.

IF you want to modify code quickly, you can always fork the repo, make adjustments yourself and use your own fork.

(Asking on Stackoverflow should usually include some code, otherwise people will flag to close the question.)

pat-s
  • 5,992
  • 1
  • 32
  • 60