Metadata-Version: 2.1
Name: all-clip
Version: 1.0.0
Summary: Load any clip model with a standardized interface
Home-page: https://github.com/rom1504/all_clip
Author: Romain Beaumont
Author-email: romain.rom1@gmail.com
License: MIT
Description: # all_clip
        [![pypi](https://img.shields.io/pypi/v/all_clip.svg)](https://pypi.python.org/pypi/all_clip)
        [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/rom1504/all_clip/blob/master/notebook/all_clip_getting_started.ipynb)
        [![Try it on gitpod](https://img.shields.io/badge/try-on%20gitpod-brightgreen.svg)](https://gitpod.io/#https://github.com/rom1504/all_clip)
        
        Load any clip model with a standardized interface
        
        ## Install
        
        pip install all_clip
        
        ## Python examples
        
        Checkout these examples to call this as a lib:
        * [example.py](examples/example.py)
        
        ## API
        
        This module exposes a single function `hello_world` which takes the same arguments as the command line tool:
        
        * **message** the message to print. (*required*)
        
        ## For development
        
        Either locally, or in [gitpod](https://gitpod.io/#https://github.com/rom1504/all_clip) (do `export PIP_USER=false` there)
        
        Setup a virtualenv:
        
        ```
        python3 -m venv .env
        source .env/bin/activate
        pip install -e .
        ```
        
        to run tests:
        ```
        pip install -r requirements-test.txt
        ```
        then 
        ```
        make lint
        make test
        ```
        
        You can use `make black` to reformat the code
        
        `python -m pytest -x -s -v tests -k "dummy"` to run a specific test
        
Keywords: machine learning
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
