Before :
try: import torch # noqa: F401 except ImportError: pass
After :
try: import torch # noqa: F401 except ImportError: torch = None # Explicitly set torch to None if not installed
Before :
try: import torch # noqa: F401 except ImportError: pass
After :
try: import torch # noqa: F401 except ImportError: torch = None # Explicitly set torch to None if not installed