Skip to content

Instantly share code, notes, and snippets.

@dleybz
Created May 18, 2023 19:18
Show Gist options
  • Select an option

  • Save dleybz/8012190314166f87f920a0539aea54c1 to your computer and use it in GitHub Desktop.

Select an option

Save dleybz/8012190314166f87f920a0539aea54c1 to your computer and use it in GitHub Desktop.
X_synth = synth_df.loc[:, synth_df.columns != "FraudFound"]
X_aug_train = X_raw_train.append(X_synth)
y_synth = synth_df["FraudFound"]
y_aug_train = y_raw_train.append(y_synth)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment