Skip to content

Commit

Permalink
Move module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuckley committed Jul 23, 2024
1 parent 46a4c0b commit c5eaf17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastmri_examples/feature_varnet/feature_varnet_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
from argparse import ArgumentParser

import torch

torch.set_float32_matmul_precision("high")
from feature_varnet import FIVarNet

from fastmri.data.transforms import center_crop, center_crop_to_smallest
from fastmri.losses import SSIMLoss
from fastmri.pl_modules.mri_module import MriModule

torch.set_float32_matmul_precision("high")


class FIVarNetModule(MriModule):
def __init__(
Expand Down

0 comments on commit c5eaf17

Please sign in to comment.