1 df.to_excel(outpath,float_format='%.2f')
to_csvon the otherhand, does seem to accept a string, according to the docstring. Oops, I wasn't aware it is expecting a function! Thanks a lot, this way it works! From my perspective, issue can be closed... Thanks again!
Say I created a custom dataset that uses OpenCV to fit nicely with Albumentations: classMyCustomDataset(Dataset):def__init__(self,csv_file,transform=None):self.files=pd.read_csv(csv_file)self.transform=transformdef__len__(self):returnlen(self.files)def__getitem__(self,index):input_img_pa...