projects
A selection of projects from over the years, from side projects exploring AI capabilities to fun collaborations with friends.
Wikipedia Crawler
An exploratory Colab notebook using Python and asyncio workers to crawl Wikipedia's API and find a path between two pages. Utilizes and compares two approaches: (1) a naive BFS minimizing path length; and (2) a priority queue based approach using SentenceTransformer similarity embeddings of the articles' contents to guide the search. Ultimately, the embedding approach is slower in execution but finds a path with fewer pages visited.