MICE: Multiple Imputation by Chained Equation
Check out this video that visualizes the process of MICE
In the real execution, we do not entirely ditch the imputation data in the previous iteration, but do some analysis and pooling. However, for now, it is enough to know that this is a chained process
The most traditional approach is to use linear regression in for predictions. However, the methodology doesn’t matter as long as we can do prediction properly. There are some more advanced libraries like MiceForest, which uses LightGBM for sequential prediction.

According to this paper, MICE showed the best performance in general, even exceeding the ones of deep learning imputation models.