How to automatically get the input size of an image after loading a model using create_model from timm.list_models list using for loop? ``` for i, model_name in enumerate(list(timm.list_models())): model = timm.create_model(model_name) inp_size = model...? ```