I'm running `cross_validation` and keep getting th...
# timegpt
a
I'm running
cross_validation
and keep getting the same error (screenshot below). Seemed to be coming from the
dtype
of my
target_date
column (based on the error message) so I converted all date columns to
datetime64[ns]
but still get the same error. Now I'm wondering if I've exceeded a limit for calling the API and that's why the error contains "`ApiError: status_code: 500`" Anybody know what's going wrong or how I can resolve it... it was working yesterday and I've tried everything that I (and Gemini and Perplexity and ChatGPT) can think of. Thank you!
Also tried converting the date columns to a Unix timestamp but to no avail.
j
Any column that isn't id, time or target is considered an exogenous feature, so it's trying to use a timestamp column as a feature. Can you remove the target_date column?
a
You solved the problem for me. Thank you Jose.
🔥 1