Merge pull request #68 from prichey/master
Fix deprecation warning, update 'interesting keywords' favoriting example
This commit is contained in:
commit
f22ca8841c
1 changed files with 2 additions and 2 deletions
|
@ -135,10 +135,10 @@ The secondary function is the "interesting keywords" list. For example, I use th
|
||||||
|
|
||||||
``` ruby
|
``` ruby
|
||||||
top100 = model.keywords.take(100)
|
top100 = model.keywords.take(100)
|
||||||
tokens = Ebooks::NLP.tokenize(tweet[:text])
|
tokens = Ebooks::NLP.tokenize(tweet.text)
|
||||||
|
|
||||||
if tokens.find { |t| top100.include?(t) }
|
if tokens.find { |t| top100.include?(t) }
|
||||||
bot.favorite(tweet[:id])
|
favorite(tweet)
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue