Skip to content

Commit

Permalink
Update gdl module to cleanup base interf name
Browse files Browse the repository at this point in the history
  • Loading branch information
plstcharles committed Nov 6, 2019
1 parent a369448 commit 6281f1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thelper/data/geo/gdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
import numpy as np

import thelper.nn.coordconv
from thelper.data.parsers import SegmentationDataset
from thelper.data.parsers import SegmentationDataset as BaseSegmentationDataset

logger = logging.getLogger(__name__)


class SegmentationDataset(SegmentationDataset):
class SegmentationDataset(BaseSegmentationDataset):
"""Semantic segmentation dataset interface for GDL-based HDF5 parsing."""

def __init__(self, class_names, work_folder, dataset_type, max_sample_count=None,
Expand Down

0 comments on commit 6281f1e

Please sign in to comment.