home.social

#stopwords — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #stopwords, aggregated by home.social.

  1. 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:

  2. 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:

  3. 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:

  4. 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:

  5. #Portuguese #stopwords
    # gist.githubusercontent.com/alo

    from 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()

    #Processing #Python #py5 #genuary #genuary28