Metadata-Version: 2.0
Name: gputils
Version: 1.0.6
Summary: Variety of utilities that may come handy in diverse projects. 
Home-page: https://github.com/guiem/gputils
Author: Guiem Bosch
Author-email: g@guiem.info
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Dist: numpy
Requires-Dist: pandas
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'

============================================================
General Python Utils (or Guiem's Python Utils :trollface:)
============================================================

.. image:: https://coveralls.io/repos/github/guiem/gputils/badge.svg?branch=master
    :target: https://coveralls.io/github/guiem/gputils?branch=master

**gputils** is a library that contains a variety of utilities that may come handy in diverse projects.

Installation
------------

:code:`pip install gputils`

Index of utilities
------------------
- :code:`dyn_mean`: computes the mean based on a previous mean plus a new value. Useful when mean is built incrementally, it saves the usage of huge arrays.
- :code:`dyn_stdev`: computes the stdev based on a previous stdev plus a new value.
- :code:`cosine_similarity`: computes the cosine similarity between two vectors or matrix and vector.

