Skip to content

Instantly share code, notes, and snippets.

View mak213k's full-sized avatar

Mayko Rodrigues mak213k

  • Brazil
View GitHub Profile
@mak213k
mak213k / stopwords.txt
Created November 13, 2019 12:59 — forked from alopes/stopwords.txt
Portuguese stop words
de
a
o
que
e
do
da
em
um
para
@mak213k
mak213k / TFIDFCalculator.java
Created November 13, 2019 02:33 — forked from guenodz/TFIDFCalculator.java
a simple implementation of TF-IDF algorithm in Java.
package com.guendouz.textclustering.preprocessing;
import java.util.Arrays;
import java.util.List;
/**
* @author Mohamed Guendouz
*/
public class TFIDFCalculator {
/**