Created
October 3, 2019 01:17
-
-
Save sam-writer/030bb4737a277d031d8d313f81ee0ae8 to your computer and use it in GitHub Desktop.
fitbert-adjectives
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 !' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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