Use case motivation: BMI health check
As mentioned, we want to create a system that can help parents take care of their child’s health by keeping their weight in check.
In the real world, you can imagine a scenario in which a parent asks a doctor whether their child has obesity issues based on the child’s age, height and weight. In the digitized setup, this communication could happen online via some web form, email or a chat platform.
But we want to do more than just digitize the doctor-patient communication: we want to automate parts of the process so that the system could learn to perform at the same level of quality as the human expert, while providing the feeling of care and security for the patient. We'll use a machine learning (ML) algorithm that will first track the doctor’s decisions and learn from the responses they send to the patients’ queries. As the available data sample grows larger, the model will gradually learn to predict verdicts on whether the child is obese or not with approximately the same accuracy as the human expert. Once the estimated confidence for the predictions is high enough, the model will take over the doctor’s workload and only ask them for opinion in edge cases that still require human attention.
Let's visualize our system in a graphic:
So, the patient requests first go to the ML component and then get forwarded to the doctor if needed, which in the beginning will basically be all the time. In the beginning, the doctor's input is both passed to the model as training data, and communicated back to the patients. Alternatively, once the model is good enough, the model verdict is just sent to the patient and never reaches the doctor.
When modelling realistic problems, the setup you need to capture with your system also becomes more layered. The multi-agent approach allows you to manage the complexity more easily by breaking down the desired behaviour into a multitude of agents, each dedicated specifically to the needs of the user (or a specific set of features) it is assigned to.
As you can see in the graphic above, there are multiple entities interacting in our system: there are multiple patients that want to get a reply from the doctor, and a single doctor that needs to handle all patient queries.
Although this may seem as a radically different use case, we’ll actually just continue building on the concepts and principles you learned in the first tutorial. Among other things, we will also be using GPT-3, and we’ll be communicating through Telegram Messenger.
Let's start!