I’m trying to predict the click through rate (CTR) of a product listing. As an input to train my model, I want to use the position of the product in the listing (if it’s the first product listed, or if it’s the second listed and so on), since that is an import component for CTR.
The problem is that I don’t have the position when making predictions for new products (because I don’t know where they will be placed in different search filters). Ideally, I would predict all positions and use the median value of those predictions as the CTR result, but that’s not feasible computational-wise.
It seems like it should be a common problem when dealing with CTR forecasting. So I’d like to ask for suggestions about how to handle that situation, where I have a variable on my training data but I don’t know it’s value for making predictions.
Thanks!