Metadata-Version: 2.1
Name: BetterLoader
Version: 0.1.2
Summary: A better PyTorch dataloader
Home-page: https://github.com/BinItAI/BetterLoader
Author: BinIt Inc
Author-email: 
License: MIT
Download-URL: https://github.com/BinItAI/BetterLoader/archive/0.1.2.tar.gz
Description: # BetterLoader
        > Making it harder to do easy things, but easier to do harder things with the Pytorch Dataloader :)
        
        BetterLoader is an extension of the default PyTorch dataloader class, that allows for custom transformations pre-load and image subset definitions. Use the power of custom index files to maintain only a single copy of a dataset with a fixed, flat file structure, and allow BetterLoader to do all the heavy lifting.
        
        ## Documentation & Usage
        Check out the BetterLoader docs [here](https://betterloader.readthedocs.io/), or some examples [here](./examples).
        
        ## Installation
        ```sh
        pip install betterloader
        ```
        
        ## Development setup
        
        We use <a href="https://opensource.com/article/18/8/what-how-makefile">Makefile</a> to make our lives a little easier :)
        ### Install Dependancies
        ```sh
        make install
        ```
        ### Run Sample
        ```sh
        make sample
        ```
        ### Run Unit Tests
        ```sh
        make test
        ```
        
        ## Release History
        * 0.0.1
            * Work in progress
        
        ## Meta
        Distributed under the MIT license. See ``LICENSE`` for more information.
        
        ## Todo
        There are a ton of open issues! Do check them out if you would like to contribute
        
        ## Contributing
        1. Fork this repository
        2. Create your feature branch (`git checkout -b feature/fooBar`)
        3. Commit your changes (`git commit -am 'Add some fooBar'`)
        4. Push to the branch (`git push origin feature/fooBar`)
        5. Create a new Pull Request, and we'll merge it in if it works :)
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
