Skip to content

Commit

Permalink
Silences warning.
Browse files Browse the repository at this point in the history
As I understand it this is not the warning discussed in #78 but it's
good to silence anyways.
  • Loading branch information
kylebgorman committed Jul 20, 2023
1 parent d5230b3 commit c37de02
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/wandb_sweeps/train_wandb_sweep.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@
import argparse
import functools
import traceback
import warnings

import pytorch_lightning as pl
import wandb

from yoyodyne import train, util


warnings.filterwarnings("ignore", ".*is a wandb run already in progress.*")


class Error(Exception):
pass

Expand Down

0 comments on commit c37de02

Please sign in to comment.