Metadata-Version: 2.1
Name: pysad
Version: 0.1.0
Summary: PySAD is an open-source python framework for anomaly detection on streaming multivariate data. 
Home-page: https://github.com/selimfirat/pysad
Author: Selim Firat Yilmaz
Author-email: yilmazselimfirat@gmail.com
License: 3-Clause BSD
Download-URL: https://github.com/selimfirat/pysad/archive/master.zip
Description: .. image:: https://raw.githubusercontent.com/selimfirat/pysad/master/docs/logo.png
        
        Python Streaming Anomaly Detection (PySAD)
        ==========================================
        
        .. image:: https://dev.azure.com/selimfirat/pysad/_apis/build/status/selimfirat.pysad?branchName=master
           :target: https://dev.azure.com/selimfirat/pysad/_build/latest?definitionId=2&branchName=master
           :alt: Azure Pipelines Build Status
        
        .. image:: https://travis-ci.org/selimfirat/pysad.svg?branch=master
           :target: https://travis-ci.org/selimfirat/pysad
           :alt: Travis CI Build Status
        
        .. image:: https://ci.appveyor.com/api/projects/status/ceghuv517ghqgjce/branch/master?svg=true
           :target: https://ci.appveyor.com/project/selimfirat/pysad/branch/master
           :alt: Appveyor Build status
        
        .. image:: https://circleci.com/gh/selimfirat/pysad.svg?style=svg
           :target: https://circleci.com/gh/selimfirat/pysad
           :alt: Circle CI
        
        .. image:: https://readthedocs.org/projects/pysad/badge/?version=latest
           :target: https://pysad.readthedocs.io/en/latest/?badge=latest
           :alt: Documentation status
        
        .. image:: https://coveralls.io/repos/github/selimfirat/pysad/badge.svg?branch=master
           :target: https://coveralls.io/github/selimfirat/pysad?branch=master
           :alt: Coverage Status
        
        .. image:: https://badges.gitter.im/selimfirat-pysad/community.svg
           :target: https://gitter.im/selimfirat-pysad/community?utm_source=share-link&utm_medium=link&utm_campaign=share-link
           :alt: Gitter
        
        .. image:: https://img.shields.io/github/license/selimfirat/pysad.svg
           :target: https://github.com/selimfirat/pysad/blob/master/LICENSE
           :alt: License
        
        
        **PySAD** is an open-source python framework for anomaly detection on streaming multivariate data.
        
        Installation
        ============
        
        
        The PySAD framework can be installed via:
        
        
        .. code-block:: bash
        
            pip install -U pysad
        
        
        Alternatively, you can install the library directly using the source code in Github repository by:
        
        
        .. code-block:: bash
        
            git clone https://github.com/selimfirat/pysad.git
            cd pysad
            pip install .
        
        
        **Required Dependencies:**
        
        
        * numpy>=1.18.5
        * scipy>=1.4.1
        * scikit-learn>=0.23.2
        * pyod>=0.7.7.1
        
        **Optional Dependencies:**
        
        
        * rrcf==0.4.3 (Only required for  `pysad.models.robust_random_cut_forest.RobustRandomCutForest`)
        * PyNomaly==0.3.3 (Only required for  `pysad.models.loop.StreamLocalOutlierProbability`)
        * mmh3==2.5.1 (Only required for  `pysad.models.xstream.xStream`)
        * pandas==1.1.0 (Only required for  `pysad.utils.pandas_streamer.PandasStreamer`)
        
        Quick Links
        ============
        
        * `Github Repository <https://github.com/selimfirat/pysad/>`_
        
        * `Documentation <http://pysad.readthedocs.io/>`_
        
        * `PyPI Package <https://pypi.org/project/pysad>`_
        
        * `Travis CI <https://travis-ci.com/github/selimfirat/pysad>`_
        
        * `Azure Pipelines <https://dev.azure.com/selimfirat/pysad/>`_
        
        * `Circle CI <https://circleci.com/gh/selimfirat/pysad/>`_
        
        * `Appveyor <https://ci.appveyor.com/project/selimfirat/pysad/branch/master>`_
        
        * `Coveralls <https://coveralls.io/github/selimfirat/pysad?branch=master>`_
        
        * `License <https://github.com/selimfirat/pysad/blob/master/LICENSE>`_
        
        
        
        Versioning
        ==========
        
        `Semantic versioning <http://semver.org/>`_ is used for this project.
        
        License
        =======
        
        This project is licensed under the `3-Clause BSD License <LICENSE>`_.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
