diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-06-27 20:27:25 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-06-27 20:27:25 +0200 |
commit | 6f21058f55ab9146673cf0098dc27869aee4090c (patch) | |
tree | 5287104e126b0fe65558b094f6a58569655bc03a /text_recognizer/models/vqvae.py | |
parent | d08a9f87a86ae6ed4a1077a3038fc444085d7f6e (diff) |
Remove unused imports
Diffstat (limited to 'text_recognizer/models/vqvae.py')
-rw-r--r-- | text_recognizer/models/vqvae.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/text_recognizer/models/vqvae.py b/text_recognizer/models/vqvae.py index 9857420..18e8691 100644 --- a/text_recognizer/models/vqvae.py +++ b/text_recognizer/models/vqvae.py @@ -1,10 +1,9 @@ """PyTorch Lightning model for base Transformers.""" from typing import Any, Dict, Union, Tuple, Type -from omegaconf import DictConfig, OmegaConf +from omegaconf import DictConfig from torch import nn from torch import Tensor -import torch.nn.functional as F import wandb from text_recognizer.models.base import LitBaseModel @@ -35,7 +34,12 @@ class LitVQVAEModel(LitBaseModel): """Logs prediction on image with wandb.""" try: self.logger.experiment.log( - {title: [wandb.Image(data[0]), wandb.Image(reconstructions[0]),]} + { + title: [ + wandb.Image(data[0]), + wandb.Image(reconstructions[0]), + ] + } ) except AttributeError: pass |