NER For Stock Mentions on Reddit

By Medium - 2021-03-04

Description

Learn how to use named entity recognition (NER) to identify organization names from finance subreddits like wallstreetbets using Python and the Reddit API.

Summary

  • NER for Extracting Stock Mentions on Reddit How to use named entity recognition for πŸš€πŸš€πŸš€πŸ’ŽπŸ€² Reddit has been at the epicenter of one of the biggest movements in the world of finance, and although it seemed like an unlikely source of such a movement β€” it’s hardly surprising in hindsight.
  • In this project, we will be interfacing directly with the Reddit API through requests β€” but feel free to use whichever approach you prefer.
  • The risks comes primarily from ARK's illiquid and very large holdings in small cap companies.
  • DisplaCy Visualization This method is great for quickly visualizing the results of our model β€” immediately it’s clear that the model is identifying ETF as an organization (which we may want to remove), and also identifying an article link The Bear Cave as a WORK_OF_ART.

 

Topics

  1. NLP (0.28)
  2. Backend (0.17)
  3. Frontend (0.1)

Similar Articles

Creating beautiful maps with Python

By Medium - 2021-01-31

I always liked city maps and a few weeks ago I decided to build my own artistic versions of it. After googling a little bit I discovered this incredible tutorial written by Frank Ceballos. It is a…

Sentiment Analysis With Long Sequences

By Medium - 2021-03-10

Sentiment analysis is typically limited by the length of text that can be processed by transformer models like BERT. We will learn how to work around this.

How to put machine learning models into production

By Stack Overflow Blog - 2020-10-12

The goal of building a machine learning model is to solve a problem, and a machine learning model can only do so when it is in production and actively in use by consumers. As such, model deployment is ...