Skip to content

Instantly share code, notes, and snippets.

@KenoLeon
Last active July 18, 2020 18:06
Show Gist options
  • Select an option

  • Save KenoLeon/becdb1cd376545b734d7fb2435189244 to your computer and use it in GitHub Desktop.

Select an option

Save KenoLeon/becdb1cd376545b734d7fb2435189244 to your computer and use it in GitHub Desktop.
Make predictions Keras
tournament_data[PREDICTION_NAME] = regressor_model.predict(tournament_data[feature_names])
df = tournament_data[PREDICTION_NAME]
df.columns = ["id", "prediction_kazutsugi"]
df.to_csv("Numerai/" + TOURNAMENT_NAME + "_submission_YourSubmissionName.csv", header=True)
print(df)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment