Skip to content

Commit

Permalink
New environment variable VERBOSE (ultralytics#6353)
Browse files Browse the repository at this point in the history
New environment variable `VERBOSE`
  • Loading branch information
johnk2hawaii committed Jan 20, 2022
1 parent 099a07e commit 029181d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
FILE = Path(__file__).resolve()
ROOT = FILE.parents[1] # YOLOv5 root directory
NUM_THREADS = min(8, max(1, os.cpu_count() - 1)) # number of YOLOv5 multiprocessing threads
VERBOSE = str(os.getenv('VERBOSE', True)).lower() == 'true' # global verbose mode

torch.set_printoptions(linewidth=320, precision=5, profile='long')
np.set_printoptions(linewidth=320, formatter={'float_kind': '{:11.5g}'.format}) # format short g, %precision=5
Expand All @@ -54,7 +55,7 @@ def is_kaggle():
return False


def set_logging(name=None, verbose=True):
def set_logging(name=None, verbose=VERBOSE):
# Sets level and returns logger
if is_kaggle():
for h in logging.root.handlers:
Expand Down

0 comments on commit 029181d

Please sign in to comment.