Skip to content
Advertisement

ValueError: special directives must be the first entry

why this error appears and what does it mean exactly?

It appears on this code (I put only the part of machine learning, because the code is so long):

JavaScript

The error is the following:

JavaScript

Thank you in advance!

Advertisement

Answer

Looking at what the code is doing I don’t think you should have np.c_ there at all. The model is trained on a triplets of (TimeInMinutes, season, ext_temp), so you’ll want to pass that same data format into the .predict function.

new_data_h should be

JavaScript

just in case you’re curious

https://docs.scipy.org/doc/numpy/reference/generated/numpy.c_.html

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement