Skip to content
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

About "train_fine_18unlabel_pseudo_TTA_1t_deeplabv3.txt" file #8

Open
daeunni opened this issue Mar 27, 2023 · 1 comment
Open

About "train_fine_18unlabel_pseudo_TTA_1t_deeplabv3.txt" file #8

daeunni opened this issue Mar 27, 2023 · 1 comment

Comments

@daeunni
Copy link

daeunni commented Mar 27, 2023

Hi,
Thanks for your nice work.
Btw, I'm trying to run this code with cityscapes dataset.
According to your sample .yaml file, cityscapes uses train_18unlabel_deeplabv3_1t split. (like below)

DATASET:
    NAME: "cityscape"
    MEAN: [0.5, 0.5, 0.5]
    STD: [0.5, 0.5, 0.5]
    MODE: 'testval'
    SEMI:
        TRAIN_SPLIT_L: 'train_18unlabel_deeplabv3_1t'    # split 
        TRAIN_SPLIT_U: 'train_18unlabel_deeplabv3_1t'    # split 
        VAL_SPLIT: 'val_fine'

However, in the SimpleBaseline/segmentron/data/dataloader/cityscapes.py L42 we need train_fine_18unlabel_pseudo_TTA_1t_deeplabv3.txt file.

        elif split == 'train_18unlabel_deeplabv3_1t':
            _split_f = [
                        "data/train_fine_18unlabel_pseudo_TTA_1t_deeplabv3.txt",
                        "data/train_fine_18label.txt"]

Where can I find this file?

@daeunni
Copy link
Author

daeunni commented Mar 27, 2023

Or can I replace this part like below?
I want to set semi-supervised setting.

DATASET:
    NAME: "cityscape"
    MEAN: [0.5, 0.5, 0.5]
    STD: [0.5, 0.5, 0.5]
    MODE: 'testval'
    SEMI:
        # DE :: modified
        TRAIN_SPLIT_L: 'train_18label'
        TRAIN_SPLIT_U: 'train_18unlabel'
        VAL_SPLIT: 'val_fine'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant