Metadata-Version: 2.1
Name: DFYS_autodiff
Version: 0.0.3
Summary: An automatic differentiation package
Home-page: https://github.com/D-F-Y-S/cs207-FinalProject
Author: Feiyu Chen; Yueting Luo; Yan Zhao
Author-email: yluo@hsph.harvard.edu
License: UNKNOWN
Description: # cs207-FinalProject
        `autodiff` 
        by
        
        **Group Name:** DFYS
        
        **Group Number:** 12
        
        **Group Member:**  Feiyu Chen, Yueting Luo, Yan Zhao
        
        [![Build Status](https://travis-ci.org/D-F-Y-S/cs207-FinalProject.svg?branch=master)](https://travis-ci.org/D-F-Y-S/cs207-FinalProject)
        
        [![Coverage Status](https://coveralls.io/repos/github/D-F-Y-S/cs207-FinalProject/badge.svg?branch=master)](https://coveralls.io/github/D-F-Y-S/cs207-FinalProject?branch=master)
        
        [![Doc Status](https://readthedocs.org/projects/cs207-finalproject/badge/?version=latest)](https://cs207-finalproject.readthedocs.io/en/latest/?badge=latest)
        
        ## Introduction
        Automatic differentiation (AD) is a family of techniques for efficiently and accurately evaluating derivatives of numeric functions expressed as computer programs. Application of AD includes Newton’s method for solving nonlinear equations, real-parameter optimization, probabilistic inference, and backpropagation in neural networks. AD has been extremely popular because of the booming development in machine learning and deep learning techniques. Our AD sofeware package enable user to calculate derivatives using the forward and reverse mode. Our package has feature including rooting finding, optimization(Newton, Gradient Descent, BFGS), and backpropagation. 
        
        ## Installing `autodiff`
        Here is how to install `autodiff` on command line. We suppose that the user has already installed `pip` and `virtualenv`:
        ### Method 1 (using pip): 
        `pip install DFYS-autodiff`
        
        
        ### Method 2 (directly from github repo): 
        1. clone the project repo by `git clone git@github.com:D-F-Y-S/cs207-FinalProject.git`
        2. `cd` into the local repo and create a virtual environment by `virtualenv env` 
        3. activate the virtual environment by `source env/bin/activate` (use `deactivate` to deactivate the virtual environment later.)
        4. install the dependencies by `pip install -r requirements.txt`
        5. install `autodiff` by `pip install -e .`
        
        ## Getting Started
        Here is the [documentation](https://cs207-finalproject.readthedocs.io/en/latest/) page
        
        See `milestone2.ipynb` under `docs/`.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
