Skip to content

Instantly share code, notes, and snippets.

@bharatc9530
Created August 4, 2020 08:31
Show Gist options
  • Save bharatc9530/a8b7e447ea8ddc5c3d6626e309a48837 to your computer and use it in GitHub Desktop.
Save bharatc9530/a8b7e447ea8ddc5c3d6626e309a48837 to your computer and use it in GitHub Desktop.
max_length = 1719
X_train = pad_sequences(X_train, maxlen=max_length, padding='pre')
X_test = pad_sequences(X_test, maxlen=max_length, padding='pre')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment