Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinuzziFrancesco committed Jan 10, 2025
1 parent f77f32a commit f1d1188
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/train/linear_regression.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ function train(sr::StandardRidge, states::AbstractArray, target_data::AbstractAr

if size(states, 2) != size(target_data, 2)
throw(DimensionMismatch("\n" *
"\n" *
" - Number of columns in `states`: $(size(states, 2))\n" *
" - Number of columns in `target_data`: $(size(target_data, 2))\n" *
"The dimensions of `states` and `target_data` must align for training." *
"\n"
"\n" *
" - Number of columns in `states`: $(size(states, 2))\n" *
" - Number of columns in `target_data`: $(size(target_data, 2))\n" *
"The dimensions of `states` and `target_data` must align for training." *
"\n"
))
end

Expand Down

0 comments on commit f1d1188

Please sign in to comment.