Created
October 8, 2022 14:45
-
-
Save andrea-dagostino/930e70a90b367c2dfcb0560827bec39a to your computer and use it in GitHub Desktop.
fuzzy_logic_tagging
This file contains 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
# upload the dataset and isolate posts | |
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