Blog

Paper Reading #2: XLNet Explained

Paper Reading #2: XLNet Explained

One of the most celebrated, recent advancements in language understanding is the XLNet model from Carnegie Mellon University and Google. It takes the "best-of-both-worlds" approach by combining auto-encoding and autoregressive language modeling to achieve...

read more

Floyd–Warshall Algorithm

In the realm of graph theory, the Floyd-Warshall algorithm efficiently computes shortest paths between all pairs of nodes in a weighted graph. This abstract network visualization symbolizes the interconnected nature of such computations, where every node has a...

read more

Bellman–Ford Algorithm

A physical graph representation with nodes (pins) and edges (strings), illustrating how connections influence shortest path calculations—similar to the Bellman-Ford algorithm. Photo by Curated Lifestyle at Unsplash. Table of Contents Introduction Mathematical...

read more

A* Algorithm: A Comprehensive Guide

Navigating a maze is like using the A* Algorithm—finding the shortest path by balancing distance traveled and estimated cost. Photo by Getty Images on Unsplash Table of Contents Introduction Mathematical Background Implementation Algorithm Comparison Conclusion...

read more

Understanding Bitwise XOR of All Pairings in C++

📚 Key Terms: XOR Operations & Bit Manipulation XOR Operation (⊕) A bitwise operation that returns 1 only when inputs differ (1⊕0=1, 0⊕1=1) and 0 when inputs are the same (0⊕0=0, 1⊕1=0). Frequency Counting A technique that tracks how many times each element appears in...

read more