You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting a stack level too deep error in lib/eps/data_frame.rb when trying to train my model. The error is occuring at the values_at call on line 121 (https://github.com/ankane/eps/blob/master/lib/eps/data_frame.rb#L121) with the splat (*rows). The rows size is 130518 so perhaps larger than expected/supported?
cols.each do |c|
raise "Undefined column: #{c}" unless columns.include?(c)
df.columns[c] = columns[c].values_at(*rows)
end
The text was updated successfully, but these errors were encountered:
I'm getting a stack level too deep error in lib/eps/data_frame.rb when trying to train my model. The error is occuring at the values_at call on line 121 (https://github.com/ankane/eps/blob/master/lib/eps/data_frame.rb#L121) with the splat (*rows). The rows size is 130518 so perhaps larger than expected/supported?
The text was updated successfully, but these errors were encountered: