We're currently developing a system that would return an ICD10-CM code (A medical/diagnosis coding system) from a text input. Example
- input 'Black Eye'
- return 'H44 - Disorders of the globe'
Problem is, ICD10-CM has 70,000 to 100,000 codes, so it won't let me train the model after I uploaded all those text examples from .csv files.
Is using multiple models a solution or should I switch to Google's AutoML?