Shortcuts

Source code for torchgeo.datamodules.quakeset

# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

"""QuakeSet datamodule."""

from typing import Any

import kornia.augmentation as K
import torch

from ..datasets import QuakeSet
from ..transforms import AugmentationSequential
from .geo import NonGeoDataModule


[docs]class QuakeSetDataModule(NonGeoDataModule): """LightningDataModule implementation for the QuakeSet dataset. .. versionadded:: 0.6 """ mean = torch.tensor(0.0) std = torch.tensor(1.0)
[docs] def __init__( self, batch_size: int = 64, num_workers: int = 0, **kwargs: Any ) -> None: """Initialize a new QuakeSetDataModule instance. Args: batch_size: Size of each mini-batch. num_workers: Number of workers for parallel data loading. **kwargs: Additional keyword arguments passed to :class:`~torchgeo.datasets.QuakeSet`. """ super().__init__(QuakeSet, batch_size, num_workers, **kwargs) self.train_aug = AugmentationSequential( K.Normalize(mean=self.mean, std=self.std), K.RandomHorizontalFlip(p=0.5), K.RandomVerticalFlip(p=0.5), data_keys=['image'], )

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources