Skip to content

Instantly share code, notes, and snippets.

@dleybz
Created May 18, 2023 19:22
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 dleybz/6f53a3a4abb7ceb745ef687af6b5a786 to your computer and use it in GitHub Desktop.
Save dleybz/6f53a3a4abb7ceb745ef687af6b5a786 to your computer and use it in GitHub Desktop.
bv_diff = dollar_aug_bv - dollar_raw_bv
bv_quotient = round(dollar_aug_bv/dollar_raw_bv)
str_to_print = f"The model trained on the raw dataset would save ${dollar_raw_bv} per claim, while the model trained on the augmented dataset would save ${dollar_aug_bv} per claim. This means that the augmented model would save the business ${bv_diff} per claim compared to the model without synthetic data, a {bv_quotient}x improvement."
print(str_to_print)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment