Skip to content

Instantly share code, notes, and snippets.

@xoraus
Last active August 17, 2019 20:16
Show Gist options
  • Save xoraus/f2d3801f23388f40b9ab21af73b55969 to your computer and use it in GitHub Desktop.
Save xoraus/f2d3801f23388f40b9ab21af73b55969 to your computer and use it in GitHub Desktop.
# check package versions
import sys
import keras
import cv2
import numpy
import matplotlib
import skimage
print('Python: {}'.format(sys.version))
print('Keras: {}'.format(keras.__version__))
print('OpenCV: {}'.format(cv2.__version__))
print('NumPy: {}'.format(numpy.__version__))
print('Matplotlib: {}'.format(matplotlib.__version__))
print('Scikit-Image: {}'.format(skimage.__version__))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment