Metadata-Version: 2.1
Name: pytorch_clip
Version: 2021.12.19.0
Summary: Pytorch API to work with CLIP models.
Home-page: UNKNOWN
Author: Sergei Belousov aka BeS
Author-email: sergei.o.belousov@gmail.com
License: UNKNOWN
Description: # pytorch_clip: Pytorch API to work with CLIP models.
        
        ## Install package
        
        ```bash
        pip install pytorch_clip
        ```
        
        ## Install the latest version
        
        ```bash
        pip install --upgrade git+https://github.com/bes-dev/pytorch_clip.git
        ```
        
        ## Features
        - Supports original CLIP models by OpenAI and ruCLIP model by SberAI.
        
        ## Usage
        
        ### Simple code
        
        ```python
        import torch
        from pytorch_clip import get_models_list, get_clip_model
        
        print(get_models_list())
        
        model, text_processor, image_processor = get_clip_model()
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
