Skip to content
Snippets Groups Projects
Select Git revision
2 results Searching

create_version_badge.sh

Blame
  • setup.py 307 B
    #!/usr/bin/env python
    
    from distutils.core import setup
    
    setup(
          name='lpips-tf',
          description='Tensorflow port for the Learned Perceptual Image Patch Similarity (LPIPS) metric',
          author='Alex Lee',
          url='https://github.com/alexlee-gk/lpips-tensorflow/',
          py_modules=['lpips_tf']
    )