Skip to content

Instantly share code, notes, and snippets.

@pmarcelino
Created October 22, 2018 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmarcelino/b57d419c428114d5607b401f5e7bd506 to your computer and use it in GitHub Desktop.
Save pmarcelino/b57d419c428114d5607b401f5e7bd506 to your computer and use it in GitHub Desktop.
Concatenation of data for the SVM classifier
# Concatenate training and validation sets
svm_features = np.concatenate((train_features, validation_features))
svm_labels = np.concatenate((train_labels, validation_labels))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment