简体   繁体   中英

Machine learning dataset correlation

I have a ML model that has features 1,2,3 and its working perfectly but now I suddenly get a test case with feature 'a' that for which it doesn't show right results how to handle that case? a detailed example would be heart attack prediction system trained for weight ,cholesterol level , height and age ,its working correctly for them but now I have a patient also has diabetes that increases the chances of heart attack. how to improve accuracy based on this uncorrelated new feature ?

Add the new feature and retrain your model.

If your first model is really perfect, you could add a structure to choose models. So if the person does not have diabetes, use the perfect model. Otherwise use another model.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM