-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Undefined Function get_dataset #16
Comments
I have copied the file
Could you check as well? |
Try to comment |
Thanks! I have solved the Then I met other import related errors, and I solved them by copying another two
|
After these copy things, I think no However, I met another error about the dataset:
I tried to compare the Could you explain how to make the augmented dataset in detail (like this), and how it is organized (including all subdirectories)? This tree structure in the readme does not include subdirectories/specific txt files, and does not specify the way to make the augmented dataset. This would be a key help, thanks! |
Thanks for the update! Could you specify in detail how the augmented PASCAL VOC dataset is organized? This issue seems unresolved.
|
Hi, just unzip the |
Thanks for the guidance! I have put these txt files into the data root folder, but then I got the following error.
I found the problem comes from below function (copied from here) def _load_data(self, index):
# Set paths
image_id = self.files[index]
image_path = osp.join(self.image_dir, image_id + ".jpg")
label_path = osp.join(self.label_dir, image_id + ".png")
# Load an image
image = cv2.imread(image_path, cv2.IMREAD_COLOR).astype(np.float32)
label = np.asarray(Image.open(label_path), dtype=np.int32)
return image_id, image, label
|
I have downloaded the file list from my personal server. Try this one |
Eh, it seems that I do not have the access permission. |
Try this one |
Thanks for sharing! Now I can run the training process for DeepLab v2 with the file above.
But when it goes to the crf command
Could you please have a look? |
Hi, as you copy
|
Thanks! I have updated the Then when I run the eval command below:
I met the following error:
Then I realized I need to copy those BTW, there is a typo in this place, where the command should be changed from Thanks for your all help! |
Thanks for helping me to fix the bugs in the code and pointing out the typo. |
Hi,
When I run
CUDA_VISIBLE_DEVICES=0 bash run_voc12_coco_pretrained.sh
to train DeepLab v2, I met following error.It looks like the function
get_dataset
is not defined. Could you check, thanks!The text was updated successfully, but these errors were encountered: