The (fizz) buzz around TensorFlow and machine learning Google Cloud Big Data and Machine Learning Blog

#artificialintelligence 

If you've ever learned to program, you've probably written a Fizz Buzz test. With Fizz Buzz, you print the numbers from 1 to 100, except if it is divisible by 3, you print "fizz"; if it's divisible by 5, you print "buzz"; and if it's divisible by 15 you print "fizzbuzz." This trivial coding problem is typically achieved with a couple of if statements and checking whether each number can be divided by 3 or 5. In his recent blog post "Fizz Buzz in TensorFlow," Grus imagines he's asked to solve Fizz Buzz as part of a job interview. But instead of taking the obvious approach, he uses TensorFlow, the open-source machine learning library developed by Google.