Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created October 4, 2020 08:34
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 amankharwal/a4d949bc062695cf8a28a592e0e466ea to your computer and use it in GitHub Desktop.
Save amankharwal/a4d949bc062695cf8a28a592e0e466ea to your computer and use it in GitHub Desktop.
probs = {}
Total = sum(word_freq_dict.values())
for k in word_freq_dict.keys():
probs[k] = word_freq_dict[k]/Total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment