Metadata-Version: 2.1
Name: pgml
Version: 0.1
Summary: Run machine learning inside Postgres.
Home-page: https://github.com/levkk/postgresml
Author: PostgresML
Author-email: hello@postgresml.com
License: UNKNOWN
Description: # PgML - Postgres Machine Learning
        
        This package implements data processing, training and scoring of ML models. It is built to be used
        inside PL/Python functions, inside a Postgres connection process.
        
        Most functions can work in any Python environment; some functions are tightly coupled to
        PL/Python by requiring a `plpy` object passed in as an argument: it provides database access methods.
        
        ## Installation
        
        For now, we require that this package is installed into the system Python packages space:
        
        ```bash
        sudo pip3 setup.py install
        ```
        
        ## Usage
        
        See `../sql/install.sql` for list of functions. This package is not meant to be used directly.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
