Skip to content

Instantly share code, notes, and snippets.

@omchaithanyav
Last active July 7, 2021 15:16
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 omchaithanyav/103d89899bae0388a3b2b7a20c25a72e to your computer and use it in GitHub Desktop.
Save omchaithanyav/103d89899bae0388a3b2b7a20c25a72e to your computer and use it in GitHub Desktop.
y_pred1 = []
for element in y_pred:
if element > 0.5:
y_pred1.append(1)
else:
y_pred1.append(0)
y_pred1[25:40]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment