Sowmith Kunapaneni

👋 Graduate Student in Computer Science at WSU.

  • I work at HARP Lab on Program Analysis and Deductive Databases.
  • Here, I write about whatever I find interesting, things I learn, and things I work on.
  • I am Looking for Internships for Summer 25, If you have any opportunities, I am eager to talk more, here is my Resume
  • Github: github.com/sowmith1999
  • LinkedIn: linkedin.com/in/sowmithk
  • This blog is under construction.

Markov Chains & Modelling

I’ve been hearing of Markov Chains for a few years, never got to read about them or something with them. This is my look at them. The sole goal of this post is to get a good look at how Markov Chains work, we are going to do this by attempting to model some stock data. This post is initially written as a paper for a course I took. Introduction There are a myriad of ways to model stock, and lot of good research is being done to solve this problem, and the better the algorithm to predict stock, the more money you can make and that can be a great motivator to innovate and have better stock prediction models....

December 21, 2024

Souffle Auto Index

Introduction Datalog rules are a bunch of relational queries, each involving of joins over multiple relations. Here is a simple example of a Datalog rule: 1 path(x, y) :- path(x, z), edge(z, y). The above query does Transitive closure over a graph, where path and edge are relations. The query is saying, if there is a path from x to z and there is an edge from z to y, then there is a path from x to y....

June 14, 2024