#stopwords — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #stopwords, aggregated by home.social.
-
Still slowly working on the #keyword extraction and storage in #json file.
I didn't manage to enable #stopwords in #keyBERT, so the plan is to filter the keywords in additional step.
The "#WordPress" or "plugin" keyword for each plugin would be useless.
The next step that follows will be to find #synonyms for each keyword... and I think I'll be using NLTK #wordNet in #python. Not sure if it's the best option.
12/:bongoCat:
-
Still slowly working on the #keyword extraction and storage in #json file.
I didn't manage to enable #stopwords in #keyBERT, so the plan is to filter the keywords in additional step.
The "#WordPress" or "plugin" keyword for each plugin would be useless.
The next step that follows will be to find #synonyms for each keyword... and I think I'll be using NLTK #wordNet in #python. Not sure if it's the best option.
12/:bongoCat:
-
Still slowly working on the #keyword extraction and storage in #json file.
I didn't manage to enable #stopwords in #keyBERT, so the plan is to filter the keywords in additional step.
The "#WordPress" or "plugin" keyword for each plugin would be useless.
The next step that follows will be to find #synonyms for each keyword... and I think I'll be using NLTK #wordNet in #python. Not sure if it's the best option.
12/:bongoCat:
-
Still slowly working on the #keyword extraction and storage in #json file.
I didn't manage to enable #stopwords in #keyBERT, so the plan is to filter the keywords in additional step.
The "#WordPress" or "plugin" keyword for each plugin would be useless.
The next step that follows will be to find #synonyms for each keyword... and I think I'll be using NLTK #wordNet in #python. Not sure if it's the best option.
12/:bongoCat:
-
#Portuguese #stopwords
# https://gist.githubusercontent.com/alopes/5358189/raw/2107d809cca6b83ce3d8e04dbd9463283025284f/stopwords.txtfrom random import sample
def setup():
global palavras
size(800, 800)
palavras = load_strings('stopwords.txt')
no_loop()
text_size(40)
fill(0)def draw():
for i in range(5):
escolhas = sample(palavras, 5)
linha = ' '.join(escolhas)
text(linha, 100, 100 + i * 40)
def key_pressed():
redraw()