Skip to content

Commit

Permalink
Update cloud38.py
Browse files Browse the repository at this point in the history
  • Loading branch information
icey-zhang authored Jun 4, 2024
1 parent 03f40dc commit 592ba20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/datasets/cloud38.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from .base_dataset import BaseDataset
import scipy.io as sio

class Cityscapes(BaseDataset):
class Cloud38(BaseDataset):
    def __init__(self,
                 root,
                 list_path,
Expand All @@ -29,7 +29,7 @@ class Cityscapes(BaseDataset):
                 mean=[0.485, 0.456, 0.406],
                 std=[0.229, 0.224, 0.225]):

        super(Cityscapes, self).__init__(ignore_label, base_size,
        super(Cloud38, self).__init__(ignore_label, base_size,
                crop_size, downsample_rate, scale_factor, mean, std,)

        self.root = root
Expand Down

0 comments on commit 592ba20

Please sign in to comment.