happy-wolf-7852
08/05/2024, 1:11 PM@step
def train_models(self):
for fold in self.fold_number_list:
some_train_data = self.some_data[
(self.some_data != fold) &
...
# fit incumbent model
# fit challenger model
# establish some performance metric(s) on test/validation etc.
I used AWS batch previously, but still think it actually works sequentially from what I have observed (or possibly this is how our AWS infra is configured?). What other approach(s) do people tend to use to speed things up - ideally reduce the runtime to a 10th-ish in this example (scaling out wise that is)?
Thanks.happy-wolf-7852
08/06/2024, 8:52 PMfast-vr-44972
08/06/2024, 10:08 PMhappy-wolf-7852
08/07/2024, 7:13 AMhappy-wolf-7852
08/07/2024, 7:20 AMdazzling-raincoat-7045
08/08/2024, 5:05 PMhappy-wolf-7852
08/08/2024, 7:42 PM