I recently worked on the Boston Housing dataset using Google Colab, and it was a good hands-on way to learn machine learning. I used PyTorch to build a simple model that predicts house prices based on different features like number of rooms and location data. I started by loading the dataset, splitting it into training and testing data, and scaling it so the model could learn better. Then I turned the data into tensors, which PyTorch uses to run calculations .
After that, I built a basic neural network with one hidden layer and trained it using a loss function and an optimizer. Over time, the model improved its predictions by lowering the error. At the end, I tested the model to see how well it worked on new data.
I also used Google Gemini to help me understand parts of the code and fix mistakes. It made things easier when I got stuck, but I still had to understand what was going on. Overall, this project helped me better understand how machine learning models are built and trained in a simple way



