When it asks for food you can say one of 3 things: PIE BURGER TURKEY When it asks for weather you can say one of 2 things: SUN RAIN Description: You have a nice room-mate that cooks for you, however if it is sunny outside, he spends his time outside instead. Because of this he only cooks a new meal on rainy days, so you will be eating leftovers on sunny days. This neural network uses matrices to find out what you will be eating today based on the weather.
Why: I'm currently learning how to program machine learning. The first step in the journey was to make a basic neural network using matrices. I watched this video to learn how https://youtu.be/UNmqTiOnRfg Struggles I had: The main thing was that scratch had no built in system for matrices, and because I'm not a fan of borrowing code, I had to program matrices into scratch. It took a long time and it is a little janky but it works! The next thing was making it so I could add and multiply matrices, you need a lot of info before you can actually multiply/add them properly. Then I had to make the network feed back into itself without generating an infinitely long list. It took a while to fix the bugs but I did it! Can't wait to start the next project!