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
x
23
23
1
import numpy as np
2
from sklearn import neighbors
3
n_neighbors = 3
4
5
if (automatic == 'true'):
6
# import some data to play with
7
home = Homes.query.filter_by(device_id = request.args.get('?device_id')).first()
8
9
htng_orders = Heating_orders.query.filter_by(home_id = home.id).all()
10
11
X_h = [[ho.timeInMinutes, ho.season, ho.ext_temp] for ho in htng_orders]
12
y_h = [ho.instruction for ho in htng_orders]
13
14
clf_h = neighbors.KNeighborsClassifier(n_neighbors, weights='distance')
15
clf_h.fit(X_h, y_h)
16
17
new_time = datetime.datetime.now().time()
18
new_timeInMinutes = (new_time.hour*60 + new_time.minute)
19
new_season = get_season(date.today())
20
new_ext_temp = getExtTemperature(home.city)
21
new_data_h = np.c_[new_timeInMinutes, new_season, new_ext_temp]
22
preddiction_h = clf_h.predict(new_data_h)
23
The error is the following:
JavaScript
1
8
1
[ ]
2
3
File "C:[...]FlaskRESTapp.py", line 525, in get
4
new_data_h = np.c_[new_timeInMinutes, new_season, new_ext_temp]
5
File "C:PythonPython36-32libsite-packagesnumpylibindex_tricks.py", line 289, in __getitem__
6
raise ValueError("special directives must be the "
7
ValueError: special directives must be the first entry.
8
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
1
2
1
new_data_h = [new_timeInMinutes, new_season, new_ext_temp]
2
just in case you’re curious
https://docs.scipy.org/doc/numpy/reference/generated/numpy.c_.html