Wrap up of Advent of Code 2021 in pure TensorFlow

An article that briefly recaps all the challenges faced solving half of the advent of code 2021 challenges in pure TensorFlow and allows you to browse them easily.

4 Likes

This is very interesting!
I thought it was already challenge to solve all the problems with regular Python!

1 Like

This is very interesting!

Happy to hear that!

This is something I find really useful, especially because the pre/post-processing phases of the forward pass of an ML model can benefy a lot (IMHO) from the SavedModel format. It removes every dependency from third-party libraries and you can guarantee the input will always be processed as expected (how many times I used a wrong resize and ended up with completely wrong results :man_facepalming: )

1 Like

Yes, being able to do complex pre/post processing and then later have that on a SavedModel format is very powerful!