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

USAVars: implementing DataModule #441

Merged
merged 25 commits into from
Jun 27, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix isort + test seed
  • Loading branch information
iejMac authored and adamjstewart committed Jun 27, 2022
commit e2e9e4159e8336de9f5d04cbbc69747a638a4494
4 changes: 0 additions & 4 deletions torchgeo/datamodules/usavars.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@

from typing import Any, Callable, Dict, Optional, Sequence


import random
import numpy as np

import pytorch_lightning as pl
import torch
from torch import Tensor
Expand Down Expand Up @@ -63,7 +60,6 @@ def __init__(

if fixed_shuffle:
torch.manual_seed(0)
random.seed(0)
np.random.seed(0)

def prepare_data(self) -> None:
Expand Down