Exercise: Predicting Diabetes Onset
Exercise: Predicting Diabetes Onset
When I run my linear classifier for 100 epochs I get about 76% accuracy. Increasing the epochs doesn't change it by much. Is there anything I can do to the feature set to increase my model's accuracy? I already ran the scaler... I tried removing some columns that I thought might not have as much of an impact on diabetes... but still accuracy is 70-80%.
-
- Site Admin
- Posts: 115
- Joined: Sat Jul 28, 2018 3:46 am
Re: Exercise: Predicting Diabetes Onset
Here's a thought exercise. Can you construct a dataset in which it's not possible to obtain > 50% accuracy?
Re: Exercise: Predicting Diabetes Onset
A dataset where the targets are all the same value?
-
- Site Admin
- Posts: 115
- Joined: Sat Jul 28, 2018 3:46 am
Re: Exercise: Predicting Diabetes Onset
Try it and let us know!
Re: Exercise: Predicting Diabetes Onset
So I am able to create a dataset where all of the training targets are 0, and 50% of the validation targets are 0 and the other 50% are 1... this results in a validation accuracy of 0.50.
Re: Exercise: Predicting Diabetes Onset
Hey LP, how does this knowledge help to understand how I would go about getting a higher accuracy? I'm not seeing the connection... Unless the answer is, 76% is good enough for this particular dataset.