Skip to content

Commit

Permalink
svm model bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mitokic committed Apr 17, 2024
1 parent 10557e5 commit eb2631b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/multistep_svm_poly.R
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ svm_poly_multistep_fit_impl <- function(x, y,

# fit model
fit_svm <- svm_reg_spec %>%
fit(
generics::fit(
Target ~ .,
combined_df
)
Expand Down
2 changes: 1 addition & 1 deletion R/multistep_svm_rbf.R
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ svm_rbf_multistep_fit_impl <- function(x, y,

# fit model
fit_svm <- svm_reg_spec %>%
fit(
generics::fit(
Target ~ .,
combined_df
)
Expand Down

0 comments on commit eb2631b

Please sign in to comment.