FizzBuzz with Pytorch

You might say that Software Engineers are mad people. They do weird stuff for no good reason… and you’re probably right! So why not a FizzBuzz in the most inefficient way. This post is inspired by this super funny post from Joel Grus: Fizz Buzz in Tensorflow. Given that I’m working with Pytorch, I thought it would be a good idea to do something similar. So let’s get to the code! [Read More]

Hello blog

Hello all, My name is Edison Gustavo Muenz and I’m a Brazilian πŸ‡§πŸ‡· that currently lives in Berlin. My career path is: Brazil πŸ‡§πŸ‡· (left in Feb/2017) South Africa πŸ‡ΏπŸ‡¦ (from March/2017 to Dec/2018) Germany πŸ‡©πŸ‡ͺ (from Jan/2019) I want to talk about Software and more recently Machine Learning and NLP. Maybe something about local culture too. I’m very interested in NLP lately because I’ve joined a team at Amazon that works on NLP and I’m finding it super exciting! [Read More]

Publishing with Jupyter notebooks

How to publish to Hugo using jupyter notebooks

My intention here is to show that it is indeed possible to use Jupyter to write blog posts, which I actually intend to do more often than writing Markdown Why? Jupyter is great because I can mix code and documentation together. print("Text is supported :)") Text is supported :) For example, look at this example from the seaborn library: !pip install seaborn import seaborn as sns sns.set() tips = sns. [Read More]