InternLM_agent / lagent /utils /package.py
Jia12's picture
Upload 111 files
bd37bb9 verified
raw
history blame contribute delete
179 Bytes
from importlib.util import find_spec
def is_module_exist(module_name):
spec = find_spec(module_name)
if spec is None:
return False
else:
return True