Closed paxcema closed 1 year ago
As a workaround, I would like to confirm that the error can be bypassed by removing the "GROUP BY" clause and using the "use_default_analysis=False" in the query. (Thanks for @paxcema's advice)
CREATE MODEL
mindsdb.TS_R1S1_SELL
FROM files
(SELECT SEQ, S1, CLOSE, SELL FROM files.TS_R1S1_TRAIN_DATA)
PREDICT SELL
ORDER BY SEQ
-- GROUP BY S1
WINDOW 4
HORIZON 2
USING
use_default_analysis=False;
I'm enclosing datasets using date/time instead of numbers for the SEQ column for the ordering. TS_R1S1_TRAIN_DATA_DT.csv TS_R1S1_TEST_DATA_DT.csv
Your Environment
Describe your issue
torch.softmax
is erroring due to underlyingstr_
type in the tensor (which is quite weird):How can we replicate it?
What dataset did you use TS_R1S1_TRAIN_DATA.csv
What was the code you ran Through MindsDB: