Metadata-Version: 2.1
Name: woollylib
Version: 0.0.4
Summary: This is a pytorch based utilities library which will help you for training and visualizing computer vision models.
Home-page: https://github.com/woolly-of-cv/pytorch-lib
Author: Team Woolly
Author-email: teamwoolly.in@gmail.com
License: UNKNOWN
Description: # woollylib 
        
        This is a pytorch based utilities library which will help you for training and visualizing computer vision models.
        
        * ## Structure Tree
        
        ```
        ├── woollylib
        │   ├── bp
        │   │   ├── autocast
        │   │   │     └── backpropagation.py   
        │   │   ├── losses
        │   │   │     └── backpropagation.py  
        │   │   ├── optimizer
        │   │   │     └── backpropagation.py  
        │   │   ├── ricap
        │   │   │     └── backpropagation.py   
        │   │   └── vanila  
        │   │         └── backpropagation.py   
        │   │ 
        │   ├── models
        │   │   ├── custom
        │   │   │     └── custom_resnet.py 
        │   │   ├── model.py
        │   │   └── resnet.py
        │   │ 
        │   ├── preloading
        │   │    └── dataset.py 
        │   │ 
        │   ├── utils
        │   │    ├── gradcam
        │   │    │   ├── _init_.py
        │   │    │   ├── compute.py
        │   │    │   ├── gradcam.py
        │   │    │   └── util.py   
        │   │    │
        │   │    ├── transform.py 
        │   │    ├── utils.py 
        │   │    └── visualize.py 
        │   │ 
        │   ├── _init_.py
        │   ├── dataset.py
        │   ├── main.py
        │   ├── scheduler.py
        │   └──training.py
        │   
        ├── setup.py
        ├── LICENSE
        ├── MANIFEST.IN
        ├── README.txt
        ├── requirements.txt
        ├── .gitignore
        └── README.md
        ```
        
        
        ## Installation 
        ```
        pip install woollylib
        ```
        
        ## How to Use it 
        
        
        
        
        
        
        
        
        
        
        ## Contributers
        * [Ammar Adil](https://github.com/adilsammar)
        * [Krithiga](https://github.com/BottleSpink)
        * [Shashwat Dhanraaj](https://github.com/sdhanraaj12)
        * [Srikanth Kandarp](https://github.com/Srikanth-Kandarp)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
