Metadata-Version: 2.1
Name: argusvision
Version: 1.0.1
Summary: Downloads pretrained Argus Vision models
Home-page: UNKNOWN
License: UNKNOWN
Description: # Argus Vision
        
        argusvision package provides easy to use access to image embedding models pretrained on Bing data - Argus Vision models.
        Interface is based on popular torchvision.
        
        In version 1.0, supported model is Argus Vision V6 - resnext101 32x8d
        
        Please note that provided models are offering image embeddings
        ## Installation
        ``pip install argusvision``
        
        For Windows, torch needs to be install from wheel file.
        Please download the latest torch from here: https://download.pytorch.org/whl/torch_stable.html
        and then install it using: pip install <.whl file>
        
        ## Usage
        Example script:  
        ```
        import argusvision
        import torch
        
        # This will load pretrained model
        model = argusvision.resnext101_32x8d()
        
        # This will initialize weights with default values
        model = argusvision.resnext101_32x8d(pretrained=False) 
        
        # Load model to CPU memory, interface is the same as torchvision
        model = argusvision.resnext101_32x8d(map_location=torch.device('cpu')) 
        ```
Platform: UNKNOWN
Description-Content-Type: text/markdown
