Created
October 8, 2022 13:40
-
-
Save andrea-dagostino/e36fa89f9f562c4c84592f329ba1ed88 to your computer and use it in GitHub Desktop.
fuzzy_logic_tagging
This file contains hidden or 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
# carichiamo un dataset e isoliamo i post | |
df = pd.read_csv('dataset.csv') | |
posts = df[df.url.str.contains('post')] | |
posts.reset_index(inplace=True, drop=True) | |
articles = list(posts.article) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment