The election is coming! We want to build an application that can parse a Tweet and determine which political party to associate with the Tweet, Republican or Democrat. As a consulting machine learning engineer you are tasked with taking the initial efforts of building the application and making it functional.
This repository contains the necessary setup and code base to help guide you in creating this application.
Please make sure you have the following software installed
- Python (3.10 or 3.11)
Before you install dependencies make sure you add your python path to the makefile.
make install
The unit tests can be run either by using the make commands (given in the makefile) or by using the commands from the respective packages. For example, unit tests can be executed using,
make test
Note: this command should execute with failed unit tests
Please be sure to complete the below tasks before the pairing session.
- Get a high-level understanding of the dataset
- Have your coding environment ready by installing python and dependencies.
- Ensure that you are able to run all commands mentioned in this README (except for pytest errors)
Please note that you DO NOT have to complete the code/tasks inside the src/
folder. It is meant to be done together during a pairing session.