This file contains hidden or 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
from nltk.corpus import wordnet | |
from nltk.tokenize import word_tokenize | |
from random import randint | |
import nltk.data | |
# Load a text file if required | |
text = "Pete ate a large cake. Sam has a big mouth." | |
output = "" | |
# Load the pretrained neural net |
This file contains hidden or 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
var urls = [ | |
'*://graph.facebook.com/*', | |
'*://platform.twitter.com/*', | |
'*://*.google-analytics.com/*' | |
]; | |
var response = function() { | |
return { cancel: true }; | |
} |