Metadata-Version: 2.1
Name: armetrics
Version: 0.1.13
Summary: Continuous Activity Recognition Metrics based on (Ward et al, 2011)
Home-page: http://github.com/srvanrell/armetrics
Author: srvanrell
Author-email: srvanrell@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: matplotlib (>=3.0.2)
Requires-Dist: numpy (>=1.13.1)
Requires-Dist: pandas (>=0.20.1)

armetrics
=========

Ongoing work...

Python implementation of some metrics proposed in:

J. A. Ward, P. Lukowicz, and H. W. Gellersen, “Performance Metrics for Activity Recognition,” ACM Trans. Intell. Syst. Technol., vol. 2, no. 1, p. 6:1–6:23, Jan. 2011.

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

This system has been developed for a Linux environment.

System-wide installation

    sudo pip3 install armetrics

Single-user installation

    pip3 install --user armetrics

Virtualenv installation (recommended)

    pipenv install armetrics

Uninstallation

    [sudo] pip3 uninstall armetrics

Update
------

System-wide update

    sudo pip3 install -U armetrics

Single-user update (recommended)

    pip3 install --user -U armetrics

Usage
-----

There are three examples in the repo (that should be improved)

Development
-----------

Install locally from source (source directory will immediately affect the installed package
without needing to re-install):

    pip3 install --user --editable .

Update version at `setup.py` and then create a source distribution

    python3 setup.py sdist bdist_wheel

Upload to PyPI

    twine upload dist/*


