If I have three data sets and want to see how well rules can be elicited from each data set, would it be best practice to take an off-the-shelf pre-trained model and train it on the three data sets, or to use something like Keras Tuner and develop a model from scratch for each of the data sets?
My current thinking is there could be some variance in a pre-trained model's ability to adapt to each data set, leading to bias, and so the way to control for that variance is to train a new model using Keras Tuner for each of the data sets (with all the tuner parameters being controlled).
Any one have any thoughts?