NLP

Attorney Search

Attorney Search: Improving Access to Legal Aid with NLP and Fair Matching

View Presentation

Hi, I’m Taro Iyadomi and this is Attorney Search, a project I developed for the 2023 UCLA DataFest.


I. A Valuable Platform with Structural Gaps

The American Bar Association’s Free Legal Answers platform connects low-income individuals with volunteer attorneys who provide free legal advice online. It plays an important role in expanding access to justice. However, despite its value, the platform faces two major issues that hinder its effectiveness:

Learning Equality: Curriculum Recommendations

Given topics teachers want to teach about spanning 29 different languages, I constructed a Siamese Neural Network to match educational contents based on their natural language inputs in a multi-class, multi-label classification problem.

Link to GitHub Page

Link to Kaggle Competition Page

Abstract

The goal of this project was to predict content matches for various educational topics from across the globe. Using the natural language titles, descriptions, and other features related to each topic and content, I preprocessed the text to remove stopwords, punctuation, and whitespaces then vectorized the text into integer vectors of fixed length with a vocabulary of 1,000,000 words associated to unique numbers. After embedding and pooling those vectors, I compared each topic-content pair through an additional neural network that determines whether the vectors were associated with each other (Siamese Network). For each topic in the topics dataset, I compared the topic to all 150,000+ contents and selected the best contents based on a threshold found from an ROC curve.