Metadata-Version: 2.1
Name: my-torch
Version: 0.0.6a0
Summary: A transparent boilerplate + bag of tricks to ease my (yours?) (our?) PyTorch dev time.
Home-page: https://github.com/geraltofrivia/mytorch/
Author: Priyansh Trivedi
Author-email: mail@priyansh.page
License: UNKNOWN
Project-URL: Source Code, https://github.com/geraltofrivia/mytorch
Description: # mytorch is your torch :fire:
        
        [![Build Status](https://travis-ci.org/geraltofrivia/mytorch.svg?branch=master)](https://travis-ci.org/geraltofrivia/mytorch)
        ![GitHub](https://img.shields.io/github/license/geraltofrivia/mytorch)
        ![PyPI](https://img.shields.io/pypi/v/my-torch)
        
        
        
        A transparent boilerplate + bag of tricks to ease my (yours?) (our?) PyTorch dev time.
        
        Some parts here are inspired/copied from [fast.ai](https://github.com/fastai/fastai).
        However, I've tried to keep is such that the control of model (model architecture), vocabulary, preprocessing is always maintained outside of this library.
        The [training loop](src/mytorch/loops.py), [data samplers](src/mytorch/dataiters.py) etc can be used independent of anything else in here, but ofcourse work better together.
        
        I'll be adding proper documentation, examples here, gradually.
        
        # Installation
        
        `pip install my-torch`
        
        (Added hyphen because someone beat me to the [mytorch](https://pypi.org/project/mytorch/) package name.)
        
        # Idea
        
        Use/Ignore most parts of the library. Will not hide code from you, and you retain control over your models. 
            If you need just one thing, no fluff, feel free to copy-paste snippets of the code from this repo to yours.
            I'd be delighted if you drop me a line, if you found this stuff helpful.
        
        # Features
        
        1. **Customizable Training Loop**
            - Callbacks @ epoch start and end
            - Weight Decay (see [this blog post](https://www.fast.ai/2018/07/02/adam-weight-decay/) )
            - :scissors: Gradient Clipping
            - :floppy_disk: Model Saving 
            - :bell: Mobile push notifications @ the end of training :ghost: ( [See Usage](#notifications)) )
            
        2. **Sortist Sampling** 
            
        3. **Custom Learning Rate Schedules** 
        
        4. Customisability & Flat Hierarchy
        
        # Usage
        
        
        ## Simplest Use Case
        ```
        import torch, torch.nn as nn, numpy as np
        
        # Assuming that you have a torch model with a predict and a forward function.
        # model = MyModel()
        assert type(model) is nn.Module
        
        # X, Y are input and output labels for a text classification task with four classes. 200 examples.
        X_trn = np.random.randint(0, 100, (200, 4))
        Y_trn = np.random.randint(0, 4, (200, 1))
        X_val = np.random.randint(0, 100, (100, 4))
        Y_val = np.random.randint(0, 4, (100, 1))
        
        # Preparing data
        data = {"train":{"x":X_trn, "y":Y_trn}, "valid":{"x":X_val, "y":Y_val} }
        
        # Specifying other hyperparameters
        epochs = 10
        optimizer = torch.optim.SGD(model.parameters(), lr=0.001)
        loss_function = nn.functional.cross_entropy
        train_function = model      # or model.forward
        predict_function = model.predict
        
        train_acc, valid_acc, train_loss = loops.simplest_loop(epochs=epochs, data=data, opt=optimizer,
                                                                loss_fn=loss_function, 
                                                                train_fn=train_function,
                                                                predict_fn=predict_function)
        ```
        
        ## Slightly more complex examples
        
        @TODO: They exist! Just need to add examples :sweat_smile:
        1. Custom eval
        2. Custom data sampler
        3. Custom learning rate annealing schedules
        
        ## Saving the model
        @TODO
        
        
        ## Notifications
        The training loop can send notifications to your phone informing you that your model's done training and report metrics alongwith.
        We use [push.techulus.com](https://push.techulus.com/) to do so and you'll need the app on your phone.
        *If you're not bothered, this part of the code will stay out of your way.* 
        But If you'd like this completely unnecessary gimmick, follow along:
        
        1. Get the app. [Play Store](https://play.google.com/store/apps/details?id=com.techulus.push) |  [AppStore](https://itunes.apple.com/us/app/push-by-techulus/id1444391917?ls=1&mt=8)
        2. Sign In/Up and get yout **api key**
        3. Making the key available. Options:
            1. in a file, named `./push-techulus-key`, in plaintext at the root dir of this folder. You could just `echo 'your-api-key' >> ./push-techulus-ley`.
            2. through arguments to the training loop as a string
        4. Pass flag to loop, to enable notifications
        5. Done :balloon: You'll be notified when your model's done training.
        
        # Changelog
        #### v0.0.6
        1. Interfaced some metrics from [torchmetrics](https://pypi.org/project/torchmetrics/), and implemented some more into a neat little package pending 
        
        #### v0.0.2
        1. Added negative sampling
        1. [TODO] Added multiple evaluation functions
        1. [TODO] Logging
        1. [TODO] Typing all functions
        
        #### v0.0.1
        1. Added some tests.
        1. Wrapping spaCy tokenizers, with some vocab management. 
        1. Packaging :confetti:
        
        # Upcoming
        1. Models
            1. Classifiers 
            1. Encoders
            1. ~~Transformers~~ (USE [pytorch-transformers by :huggingface:](https://github.com/huggingface/pytorch-transformers))
        3. Using FastProgress for progress + live plotting
        1. [W&B](https://wandb.ai) integration
        4. ?? (tell me [here](https://github.com/geraltofrivia/mytorch/issues))  
        
        # Contributions
        I'm eager to implement more tricks/features in the library, while maintaining the flat structure (and ensuring backward compatibility). 
        Open to suggestions and contributions. Thanks! 
        
        PS: Always appreciate more tests.
        
        # Acknowledgements
        
        An important part of the code was designed, and tested by :
        
        > [Gaurav Maheshwari](https://gauravm.gitbook.io/) &nbsp;&middot;&nbsp;
        > GitHub [@saist1993](https://github.com/saist1993/) &nbsp;&middot;&nbsp;
        > Twitter [@__gauravm](https://twitter.com/__gauravm)
        
Keywords: deep learning,pytorch,boilerplate,machine learning,neural network,preprocessing
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Description-Content-Type: text/markdown
