Series(annotation)Retrieving the weights:weights = model.final.weight.detach().cpu().numpy() filters = ["filter"+str(i) for i in range(num_cnns)] for i in annotation.keys(): filters[int(i.split("filter")[-1])] = annotation[i] weight_df = pd.DataFrame(weights, index=target_...