66 lines
1.7 KiB
Python
66 lines
1.7 KiB
Python
# YOLOv5 🚀 by Ultralytics, GPL-3.0 license
|
|
"""
|
|
utils/initialization
|
|
"""
|
|
|
|
import contextlib
|
|
import threading
|
|
|
|
|
|
class TryExcept(contextlib.ContextDecorator):
|
|
# YOLOv5 TryExcept class. Usage: @TryExcept() decorator or 'with TryExcept():' context manager
|
|
def __init__(self, msg=''):
|
|
self.msg = msg
|
|
|
|
def __enter__(self):
|
|
pass
|
|
|
|
def __exit__(self, exc_type, value, traceback):
|
|
if value:
|
|
print(f'{self.msg}{value}')
|
|
return True
|
|
|
|
|
|
def threaded(func):
|
|
# Multi-threads a target function and returns thread. Usage: @threaded decorator
|
|
def wrapper(*args, **kwargs):
|
|
thread = threading.Thread(target=func, args=args, kwargs=kwargs, daemon=True)
|
|
thread.start()
|
|
return thread
|
|
|
|
return wrapper
|
|
|
|
|
|
def notebook_init(verbose=True):
|
|
# Check system software and hardware
|
|
print('Checking setup...')
|
|
|
|
import os
|
|
import shutil
|
|
|
|
from utils.general import check_font, check_requirements, emojis, is_colab
|
|
from utils.torch_utils import select_device # imports
|
|
|
|
check_requirements(('psutil', 'IPython'))
|
|
check_font()
|
|
|
|
import psutil
|
|
from IPython import display # to display images and clear console output
|
|
|
|
if is_colab():
|
|
shutil.rmtree('/content/sample_data', ignore_errors=True) # remove colab /sample_data directory
|
|
|
|
# System info
|
|
if verbose:
|
|
gb = 1 << 30 # bytes to GiB (1024 ** 3)
|
|
ram = psutil.virtual_memory().total
|
|
total, used, free = shutil.disk_usage("/")
|
|
display.clear_output()
|
|
s = f'({os.cpu_count()} CPUs, {ram / gb:.1f} GB RAM, {(total - free) / gb:.1f}/{total / gb:.1f} GB disk)'
|
|
else:
|
|
s = ''
|
|
|
|
select_device(newline=False)
|
|
print(emojis(f'Setup complete ✅ {s}'))
|
|
return display
|