My First Post
Introduction This is bold text, and this is emphasized text. Visit the Hugo website! $$ a^2 + b^2 = c^2 $$
Recent content on René's Blog
Introduction This is bold text, and this is emphasized text. Visit the Hugo website! $$ a^2 + b^2 = c^2 $$
A while ago I downloaded a simple puzzle game called Water Sorting Puzzle where you have multiple flasks with different colors of liquid and you have to somehow sort them to beat a level. The nice thing about this app is that it’s completly ad free - unlike many other apps with the same game concept. I was playing it until level 74 where I hit a wall. Feel free to try it out yourself:
Ever needed to calculate prime numbers in a SQL database? No? Here is the query anyways: with recursive primes(i, d) as ( select generate_series(2, 10000), 2 union select i, (select min(i) from primes where i > d) from primes where d <= (select sqrt(max(i)) from primes) and (i <= d or mod(i, d) != 0) ) select i from primes where d = (select max(d) from primes) order by primes.i ASC You can try it…
Hello 2024!
Today, I finished my master’s thesis with the Computer Vision chair under Prof. Dr. Daniel Cremers. I surveyed several distributed, asynchronous optimization algorithms, gave insights into their convergence theory and performed experiments on the “delayed” versions of Stochastic Gradient Descent (SGD) and of the Alternating Direction Method of Multipliers algorithm (ADMM). You…
During the winter semester 2018/2019, I did a “guided research” project with the Data Analytics and Machine Learning Group chair at TUM. Together with my advisors we modified one of their projects called NetGAN that generates graphs (networks) using Generative Adversarial Networks. You can find my report below. Download
Currently, I am taking a class called “Convex Optimization for Machine Learning & Computer Vision”. Even though the lectures are quite theoretical, the programming homework are not and we do some interesting projects like this one: How would you separate the background and the foreground of a video using optimization? Most likely, you would somehow make the assumption that the…
During my masters, I took the class “Data Science Society” which is about the ethics on data science. For the final project of this class we had to write an essay on a related topic. This was my attempt. Download
Some months ago I came across the Twitch streamer Joshimuz who has quite an interesting project: He tries to play through GTA San Andreas by solving everything. Not only he tries to achieve 100 % but he also set his own goals and challenges. At the same time, he gives insights into a lot of (speed running) techniques, interesting bugs and a little bit of game development. If you like content like…
You can find me on Github and reach me on LinkedIn or by e-mail. Impressum By German law I am obliged to provide the following information. Anbieter René Filip c/o Schöppl Zinnienstraße 21 80939 München Kontakt E-Mail: renefilip (at) mail (dot) com Website: https://rene.pub/ Bei redaktionellen Inhalten Verantwortlich nach § 55 Abs.2 RStV René Filip c/o Schöppl Zinnienstraße 21 80939 München