Skip to content

๐Ÿ‚ A machine learning model that performs topic classification of news articles for media bias analysis. Final project for UC Berkeley MIDS 266 (Natural Language Processing)

License

Notifications You must be signed in to change notification settings

cricksmaidiene/snowplough

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

36 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Snowplough ๐Ÿ‚

Find More Info on the Project Page: Snowplough Project

A machine learning model that performs topic classification of news articles for media bias analysis. Final project for UC Berkeley MIDS 266 (Natural Language Processing)

Environments:

Libraries:

Data:

Installation

Setup anaconda as a virtual environment

conda create --name snowplough python=3.10 -y
conda activate snowplough

Dowload and install snowplough dependencies

git clone https://github.com/cricksmaidiene/snowplough
cd snowplough

Install with poetry:

poetry install

Or with pip:

pip install .

Tools & Infrastructure

All descriptive analysis, data engineering, processing and baseline modeling was run within Python environment-based Databricks notebooks on CPU backed single-node clusters. Spark was not required, and the main choice for Databricks here was to allow variable sized clusters based on requirements at different project stages. No Databricks-specific commands or dependencies exist, and the notebooks are agnostic and can be run directly on Jupyter or Google Colab as well, provided that the Python requirements are met, and the requisite hardware is available. A custom Delta Lake (an open source file format on top of apache parquet) handler to store data locally in the file system or on AWS S3 was used, in order to manage memory better for the size of All The News v2. The neural network based classifiers were trained on P-class and G-class instance-type GPUs made available through AWS & Databricks. Mlflow was used to track and save experimental results for trial and error of hyperparameter tuning

Data Layer

This project utilizes Delta Lake for data storage. The storage location is flexible between AWS S3 or Local Filesystem. The data layer is abstracted away from the user and can be specified when calling FileSystemHandler from src.utils.io in notebooks.

Example:

from src.utils.io import FileSystemHandler

# AWS S3
datafs = FileSystemHandler("s3", s3_bucket="snowplough-mids")

# Local Filesystem
datafs = FileSystemHandler("local", local_path="/path/to/data/dir")

# List Tables
datafs.listdir("/location/catalog/")

About

๐Ÿ‚ A machine learning model that performs topic classification of news articles for media bias analysis. Final project for UC Berkeley MIDS 266 (Natural Language Processing)

Topics

Resources

License

Stars

Watchers

Forks