Introduction

A few months ago I discovered fast.ai’s fastbook. It was released in August with an accompanying set of YouTube videos that serves as an introductory course in the topic of deep learning. The content is made very approachable by the authors Jeremy Howard, Rachel Thomas, and Sylvain Gugger.

I already had a cursory knowledge of AI having taken a class in college, but I wanted to dive deeper into the inner workings — ideally all the way to the metal. I purchased the book on Amazon in August, but I’ve been slow to go through it since some of the video lectures are rather long, and I learn far better by reading and doing versus listening.

This week I’ve decided to pick up where I left off. I had been thinking about starting a early today (why not), and one of the sections of the book/lecture specifically calls out the advantages of starting your own blog which is rather strange for a book about deep learning. Anyway, that section of the book pushed me over the edge, so now here we are.

To give a quick introduction of myself: My name is Jerred Shepherd. I’m a software engineer working at Amazon Web Services. I work on problems regarding distributed systems and scalability which has been really fun. I love computers and programming, and I often spend my free time working on side projects as a hobby.

Recent posts from blogs that I like

The difference between undefined behavior and ill-formed C++ programs

They are two kinds of undefined-ness, one for runtime and one for compile-time. The post The difference between undefined behavior and ill-formed C++ programs appeared first on The Old New Thing.

via The Old New Thing

This game would be perfect if it wasn't gacha

TL;DR: Zenless Zone Zero is a fantastic game that's ruined by its gacha system. It's a shame that it's a gacha game, because it's so good otherwise. 8/10

via Xe Iaso

Building static binaries with Go on Linux

One of Go's advantages is being able to produce statically-linked binaries [1]. This doesn't mean that Go always produces such binaries by default, however; in some scenarios it requires extra work to make this happen. Specifics here are OS-dependent; here we focus on Unix systems. Basics - hello wo...

via Eli Bendersky