cs481-ekh / f22-ai-cbl

Other
0 stars 1 forks source link

Implement different evaluation techniques #80

Closed Stephanie-P-Ball closed 1 year ago

Stephanie-P-Ball commented 1 year ago

As a developer, I want to evaluate our models, so that I can determine how accurate it is

Definition of Done

Tasks

Stephanie-P-Ball commented 1 year ago

While creating the tasks for this story, I was thinking of evaluation methods normally used for other models such as logistic regression. After trying them on the Linear Regression model, I found they do not perform well, or at all, in evaluating the accuracy of this model. Instead, I was able to get the MSE (Mean Square Error), MAE (Mean Absolute Error), and R-squared score. Using this, it appears the folding train-test split is the most accurate. However, it is still not great. I believe we should continue looking at different models to find one more accurate.