Skip to content

Instantly share code, notes, and snippets.

@sam-writer
Created October 3, 2019 01:17
Show Gist options
  • Save sam-writer/030bb4737a277d031d8d313f81ee0ae8 to your computer and use it in GitHub Desktop.
Save sam-writer/030bb4737a277d031d8d313f81ee0ae8 to your computer and use it in GitHub Desktop.
fitbert-adjectives
masked_string = "Your 17 ***mask*** burritos are on their way !"
options = ['hot', 'cold', 'sweet', 'delicious', 'artisanal']
fb.fitb(masked_string, options=options)
# >>> 'Your 17 delicious burritos are on their way !'
masked_string = "Your 6 ***mask*** sodas are on their way !"
options = ['hot', 'cold', 'sweet', 'delicious', 'artisanal']
fb.fitb(masked_string, options=options)
# >>> 'Your 6 cold sodas are on their way !'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment