The task is to develop an algorithm for predicting the carbon content and temperature of cast iron.
There are two subtasks in this task:
- Implement an algorithm that predicts the carbon content and temperature of cast iron at the end of metal melting
- The task from the real world is to figure out how to generalize the algorithm from point 1 to the situation of real production. In real time, we do not know when the end of the purge will come, but we must determine it ourselves based on the predicted parameters of cast iron. What should I add? How do I move from a model problem to a real-world problem? How to develop the algorithm so that it is as useful to the business as possible?
In our submission we use a single CATBOOST tuned by GridSearchCV from Scikit-learn.