Metadata-Version: 2.4
Name: heavyedge-classify
Version: 1.2.0
Summary: Package to classify edge profiles
Author-email: Jisoo Song <jeesoo9595@snu.ac.kr>
License-Expression: MIT
Project-URL: homepage, https://pypi.python.org/pypi/heavyedge-classify/
Project-URL: source, https://github.com/heavyedge/heavyedge-classify
Project-URL: documentation, https://heavyedge-classify.readthedocs.io
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering
Classifier: Operating System :: OS Independent
Requires-Python: <3.14,>=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: heavyedge
Requires-Dist: scikit-learn
Requires-Dist: aeon>=1.3.0
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: tqdm; extra == "test"
Provides-Extra: doc
Requires-Dist: sphinx; extra == "doc"
Requires-Dist: numpydoc; extra == "doc"
Requires-Dist: pydata_sphinx_theme; extra == "doc"
Provides-Extra: dev
Requires-Dist: flake8; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: heavyedge-classify[doc,test]; extra == "dev"
Dynamic: license-file

# HeavyEdge-Classify

[![HuggingFace](https://img.shields.io/badge/HuggingFace-Model-orange?logo=huggingface)](https://huggingface.co/jeesoo9595/heavyedge-classify-v1)
[![Supported Python Versions](https://img.shields.io/pypi/pyversions/heavyedge-classify.svg)](https://pypi.python.org/pypi/heavyedge-classify/)
[![PyPI Version](https://img.shields.io/pypi/v/heavyedge-classify.svg)](https://pypi.python.org/pypi/heavyedge-classify/)
[![License](https://img.shields.io/github/license/heavyedge/heavyedge-classify)](https://github.com/heavyedge/heavyedge-classify/blob/master/LICENSE)
[![CI](https://github.com/heavyedge/heavyedge-classify/actions/workflows/ci.yml/badge.svg)](https://github.com/heavyedge/heavyedge-classify/actions/workflows/ci.yml)
[![CD](https://github.com/heavyedge/heavyedge-classify/actions/workflows/cd.yml/badge.svg)](https://github.com/heavyedge/heavyedge-classify/actions/workflows/cd.yml)
[![Docs](https://readthedocs.org/projects/heavyedge-classify/badge/?version=latest)](https://heavyedge-classify.readthedocs.io/en/latest/?badge=latest)

Python package for probabilistic classification of edge profiles.

## Usage

HeavyEdge-Classify provides simple command line interfaces:

```bash
heavyedge classify-train profiles labels
heavyedge classify-predict profiles model
```

Python Runtime API is also provided to incorporate the trained model into other framework.
Refer to the package documentation for more information.

## Installation

```
$ pip install heavyedge-classify
```

## Documentation

The manual can be found online:

> https://heavyedge-classify.readthedocs.io

If you want to build the document yourself, get the source code and install with `[doc]` dependency.
Then, go to `doc` directory and build the document:

```
$ pip install .[doc]
$ cd doc
$ make html
```

Document will be generated in `build/html` directory. Open `index.html` to see the central page.

## Developing

### Installation

For development features, you must install the package by `pip install -e .[dev]`.

### Testing

Run `pytest` command to perform unit test.

When doctest is run, buildable sample data are rebuilt by default.
To disable this, set `HEAVYEDGE_TEST_REBUILD` environment variable to zero.
For example,
```
HEAVYEDGE_TEST_REBUILD=0 pytest
```
