Metadata-Version: 2.1
Name: pyadbcxy
Version: 0.0.6
Summary: An automatic differentiation package
Home-page: https://github.com/cs107-BCXY/cs107-FinalProject
Author: Xiang Bai, Charlie Harrington, Yaxin Lei, Bowen Zhu
License: MIT
Project-URL: Bug Tracker, https://github.com/cs107-BCXY/cs107-FinalProject/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Welcome to PyADBCXY  

[![build](https://github.com/cs107-BCXY/cs107-FinalProject/actions/workflows/workflow.yml/badge.svg?branch=main)](https://github.com/cs107-BCXY/cs107-FinalProject/actions/workflows/workflow.yml)
[![codecov](https://codecov.io/gh/cs107-BCXY/cs107-FinalProject/branch/main/graph/badge.svg?token=LJX9AH62PE)](https://codecov.io/gh/cs107-BCXY/cs107-FinalProject)  

PyADBCXY is an automatic differentiation software package that can calculate the values and derivatives of complex functions while maintaining high levels of accuracy.

## Contributors  

Group Name: cs107-BCXY  
Group Number: 12  
Group Members:  
* Charlie Harrington, Harvard University, <charlesharrington@g.harvard.edu>  
* Bowen Zhu, Harvard University, <bszhu@fas.hardvard.edu>  
* Yaxin Lei, Harvard University, <yaxin_lei@g.harvard.edu>  
* Xiang Bai, Harvard University, <xbai@hsph.harvard.edu>

## Installation

Install the package with pip:

    pip install pyadbcxy

Then you can run a simple example such as

```python
import pyadbcxy as ad
x = ad.Variable(3)            # instantiate x variable
y = ad.Variable(4., 5.)       # instantiate y variable
f = lambda x, y: x + y        # define function of interest
fmode = ad.Forward(f, (x, y)) # instantiate forward mode
fmode.calculate()             # evaluate function at x and y
print(fmode.value)            # print value of f at x and y
print(fmode.derivative)       # print derivative of f and x and y
```

For further details on package usage as well as the math behind it, please see the [documentation](/docs/documentation.md).

## For developers

To install the package for further development, clone the repository to your machine:

    git clone https://github.com/cs107-BCXY/cs107-FinalProject.git

Then, move into the repository and install the package dependencies

    cd cs107-FinalProject
    pip install -r requirements.txt

#### Testing

To run the tests, you can execute

    python -m unittest discover -s tests -p 'test_*.py'

Alternatively, you can run the test driver script. The default testing framework is [`unittest`](https://docs.python.org/3/library/unittest.html) and can be run with:

    bash tests/run_tests.sh

If you'd like to execute the tests using [`pytest`](https://docs.pytest.org/en/6.2.x/), simply specify in the command:

    bash tests/run_tests.sh pytest

Finally, if you'd like to see the code coverage report, you can do so with the [`coverage`](https://coverage.readthedocs.io/en/6.2/) keyword:

    bash tests/run_tests.sh coverage

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) for more details.

## Broader Impact and Inclusivity Statement

We strove to create a convenient way to automatically differentiate smoothly and accurately. The automatic differentiation package is able to efficiently compute the derivatives of functions of any numerical inputs granted they are mathematically valid in the constraints of functions, including integers, floats, single and multiple variables. Traditionally in finite differentiation, users need to select an epsilon value for the algorithm that calculates the difference of slope. The choice of epsilon will impact the accuracy of the derivative especially since computationally the rounding error may be a specific problem. Our package eliminates this process for users by adopting autodifferentation method.

While automatic differentiation is proven to be powerful in calculating accurate derivatives, such function does not prevail in common machine learning packages. In neural networks and regression based models, gradient descent is widely used to find the optimal parameters. Automatic differentiation assists this process so that any differentiation, even when the algebraic form is hard to compute, can be done easily. This broadens the range of models one can choose from without concerning the complexity of their derivatives. If used responsibly, the benefit of a wider range of models and increasing accuracy can be broadcast to many fields including public health and medicine, where models are rather complicated.

We strongly believe in the importance of inclusivity of our package. We worked to ensure that our package is accessible to all and is licensed as such. We ensured proper documentation and simple and straightforward usage instruction that is easy to follow. The creation of this package was conducted through teamwork where every member was respected and represented, and contributed to the outcome. The coding process was discussed among members of the team as well as researched online through open source.

Our purpose in this development was to at once enrichment or own understanding of the mathematical and programming grounds of a commonly used and powerful tool as well as provide a basis for others to refer to and build upon. We discourage any illegal and unethical use of our package in projects that harm a particular group based on attributes including (but not limited to) age, culture, ethnicity, gender identity or expression, national origin, physical or mental difference, politics, race, religion, sex, sexual orientation, socio-economic status, and subculture.

