Skip to content

Instantly share code, notes, and snippets.

@yang-zhang
Created July 9, 2018 13:53
Show Gist options
  • Save yang-zhang/df2ee069436ef70abc40f17fdb63428c to your computer and use it in GitHub Desktop.
Save yang-zhang/df2ee069436ef70abc40f17fdb63428c to your computer and use it in GitHub Desktop.
Randomly sample a dictionary
def sample_dct(dct, n=3):
idx = np.random.choice(len(dct), n)
return dict(np.array(list(dct.items()))[idx])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment