---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-11-cc4d91dae8d9> in <module>()
1 print(y_test)
----> 2 mse_t = mean_squared_error(y_test, y_pred_text)
3 mse_i = mean_squared_error(y_test, y_pred_image)
4 mse = mean_squared_error(y_test, y_pred)
5
~/anaconda3/lib/python3.6/site-packages/sklearn/metrics/regression.py in mean_squared_error(y_true, y_pred, sample_weight, multioutput)
236 """
237 y_type, y_true, y_pred, multioutput = _check_reg_targets(
--> 238 y_true, y_pred, multioutput)
239 output_errors = np.average((y_true - y_pred) ** 2, axis=0,
240 weights=sample_weight)
~/anaconda3/lib/python3.6/site-packages/sklearn/metrics/regression.py in _check_reg_targets(y_true, y_pred, multioutput)
73
74 """
---> 75 check_consistent_length(y_true, y_pred)
76 y_true = check_array(y_true, ensure_2d=False)
77 y_pred = check_array(y_pred, ensure_2d=False)
~/anaconda3/lib/python3.6/site-packages/sklearn/utils/validation.py in check_consistent_length(*arrays)
171 if len(uniques) > 1:
172 raise ValueError("Found input variables with inconsistent numbers of"
--> 173 " samples: %r" % [int(l) for l in lengths])
174
175
ValueError: Found input variables with inconsistent numbers of samples: [1533, 10]