Open saraalemadi opened 1 year ago
Dear Sara A. Al-Emadi,
The typo is corrected and the new code is
if opt.dataset == "PACS_augmentation":
dataset = onedomainPACS(root = "~/Data/", test_envs = opt.domain_index, data_augmentation = False, image_size = 256)
Thank you for your interest in our work and for pointing out this typo.
Best, Runpeng
Hi,
Thanks @yu-rp, the above solution resolved this error. However, I am getting the error below now, although I tried to resolve the issue of the dataset path by changing the path wherever it was called to where the dataset is located in my directory. However, for some reason "/home/yurunpeng" is still appended to the dataset path. Kindly let me know how to resolve this issue.
Thanks.
Regards, Sara A. Al-Emadi
...
loaded samples [('/home/yurunpeng/Data/PACSm/art_painting/dog/pic_168.jpg', 0), ('/home/yurunpeng/Data/PACSm/art_painting/elephant/pic_133.jpg', 1), ('/home/yurunpeng/Data/PACSm/art_painting/horse/pic_059.jpg', 4), ('/home/yurunpeng/Data/PACSm/art_painting/house/pic_071.jpg', 5), ('/home/yurunpeng/Data/PACSm/art_painting/house/pic_195.jpg', 5)]
base modified samples [('/~/yurunpeng/Data/PACSm/art_painting/dog/pic_168.jpg', 0), ('/~/yurunpeng/Data/PACSm/art_painting/elephant/pic_133.jpg', 1), ('/~/yurunpeng/Data/PACSm/art_painting/horse/pic_059.jpg', 4), ('/~/yurunpeng/Data/PACSm/art_painting/house/pic_071.jpg', 5), ('/~/yurunpeng/Data/PACSm/art_painting/house/pic_195.jpg', 5)]
shuffled index exists at /DSI/Data/shuffled_samples/PACS_0.pt and loaded
Traceback (most recent call last):
File "scripts/augment.py", line 445, in <module>
main()
File "scripts/augment.py", line 373, in main
for e, xy_dict in enumerate(dataloader):
File "anaconda3/envs/ldm/lib/python3.8/site-packages/torch/utils/data/dataloader.py", line 681, in __next__
data = self._next_data()
File "anaconda3/envs/ldm/lib/python3.8/site-packages/torch/utils/data/dataloader.py", line 1376, in _next_data
return self._process_data(data)
File "anaconda3/envs/ldm/lib/python3.8/site-packages/torch/utils/data/dataloader.py", line 1402, in _process_data
data.reraise()
File "/anaconda3/envs/ldm/lib/python3.8/site-packages/torch/_utils.py", line 461, in reraise
raise exception
FileNotFoundError: Caught FileNotFoundError in DataLoader worker process 0.
Original Traceback (most recent call last):
File "anaconda3/envs/ldm/lib/python3.8/site-packages/torch/utils/data/_utils/worker.py", line 302, in _worker_loop
data = fetcher.fetch(index)
File "anaconda3/envs/ldm/lib/python3.8/site-packages/torch/utils/data/_utils/fetch.py", line 49, in fetch
data = [self.dataset[idx] for idx in possibly_batched_index]
File "anaconda3/envs/ldm/lib/python3.8/site-packages/torch/utils/data/_utils/fetch.py", line 49, in <listcomp>
data = [self.dataset[idx] for idx in possibly_batched_index]
File "DSI/DiffusionModel/stable-diffusion-main/ldm/data/datasets.py", line 133, in __getitem__
x,y = self.dataset[index]
File "anaconda3/envs/ldm/lib/python3.8/site-packages/torchvision/datasets/folder.py", line 230, in __getitem__
sample = self.loader(path)
File "anaconda3/envs/ldm/lib/python3.8/site-packages/torchvision/datasets/folder.py", line 269, in default_loader
return pil_loader(path)
File "anaconda3/envs/ldm/lib/python3.8/site-packages/torchvision/datasets/folder.py", line 247, in pil_loader
with open(path, "rb") as f:
FileNotFoundError: [Errno 2] No such file or directory: '/~/yurunpeng/Data/PACSm/art_painting/dog/pic_168.jpg'
Hi,
I am trying to replicate your experiments. I was able to successfully follow the Finetuning of Diffusion Model step mentioned here. However, when I tried running the code provided for the Transformation step, I get the following error:
When I commented out:
print(outstr)
and changed the --dataset PACS_Augmentation to PACS, I got the following error:Therefore, I would greatly appreciate your clarification on how to run this step.
Thanks. Sara A. Al-Emadi