8 lines
220 B
Python
8 lines
220 B
Python
# The 2 importing commands are for testing these imported library
|
|
# code files won't be captured by `infer_code_paths=True`
|
|
import scipy
|
|
import sklearn
|
|
|
|
sk_version = sklearn.__version__
|
|
scipy_version = scipy.__version__
|