Thank you! We'll be in touch ASAP.
Something went wrong, please try again or contact us directly at contact@dagshub.com
Deci-AI:master
deci-ai:feature/SG-761-yolo-nas
import sys from super_gradients.common.crash_handler.crash_tips_setup import setup_crash_tips from super_gradients.common.crash_handler.exception_monitoring_setup import setup_pro_user_monitoring from super_gradients.common.crash_handler.exception import register_exceptions def setup_crash_handler(): """Setup the environment to handle crashes, with crash tips and more.""" is_setup_crash_tips = setup_crash_tips() is_setup_pro_user_monitoring = setup_pro_user_monitoring() if is_setup_crash_tips or is_setup_pro_user_monitoring: # We don't want to wrap sys.excepthook when not required sys.excepthook = register_exceptions(sys.excepthook)
Press p or to see the previous file or, n or to see the next file