We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am getting following error when i run this "jupyter notebook model.ipynb", Could you help me to resolve this issue?
IndexError Traceback (most recent call last) in 22 return scaled_X, X_scaler 23 ---> 24 scaled_X, X_scaler = plot_features(vehicle_features, non_vehicle_features)
in plot_features(vehicle_features, non_vehicle_features) 6 7 def plot_features(vehicle_features, non_vehicle_features): ----> 8 vehicle_features[0].shape 9 if len(vehicle_features) > 0: 10 X = np.vstack((vehicle_features, non_vehicle_features)).astype(np.float64)
IndexError: list index out of range
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am getting following error when i run this "jupyter notebook model.ipynb", Could you help me to resolve this issue?
IndexError Traceback (most recent call last)
in
22 return scaled_X, X_scaler
23
---> 24 scaled_X, X_scaler = plot_features(vehicle_features, non_vehicle_features)
in plot_features(vehicle_features, non_vehicle_features)
6
7 def plot_features(vehicle_features, non_vehicle_features):
----> 8 vehicle_features[0].shape
9 if len(vehicle_features) > 0:
10 X = np.vstack((vehicle_features, non_vehicle_features)).astype(np.float64)
IndexError: list index out of range
The text was updated successfully, but these errors were encountered: