CST383 - Week 1
CST383 Week 1 New semester! This is the Intro to Data Science course. The reading started us off with the Iris dataset, and how to manipulate the data from it to predict future iris data (at a 97% success rate). This style of machine learning is supervised learning, where we train it on data that we know to be true. This allows us to measure the accuracy of the model in identifying irises. For unsupervised learning, we feed data into the algorithm but do not provide any known output data that we know to be true. An example would be to create a summary of reviews of a product. There is no known output data because the reviews must be fed into the algorithm first and compare it to existing reviews in the database, and find commonalities with them. Before creating a supervised model, the best practice is to look at your data (visually helps, like a scatter plot) and find commonalities with each feature of the samples. This can help identify i...