Last active
August 14, 2019 12:45
-
-
Save AnasAlmasri/f86a933a1bc4d46d3f309340c74e8ac7 to your computer and use it in GitHub Desktop.
preprocesing all tweets
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
tweetProcessor = PreProcessTweets() | |
preprocessedTrainingSet = tweetProcessor.processTweets(trainingData) | |
preprocessedTestSet = tweetProcessor.processTweets(testDataSet) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello Anas!
trainingData is generated by this line:
What was the point of saving all the fetched tweets to tweetDataFile if I have to fetch and save them to a new tweetDataFile all over again every time I run buildTrainingSet?