Metadata-Version: 2.1
Name: tlp-classifier
Version: 0.1.3
Summary: A command-line tool for automatically classifying ternary labelling problems (hence TLP) on bipartite trees.
Home-page: https://github.com/AleksTeresh/tlp-classifier
Author: Tanguy Rocher, Aleksandr Tereshchenko
Author-email: tanguy.rocher@epfl.ch, aleksandr.tereshch@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: tqdm
Requires-Dist: bitarray

# tplClassifier

## Getting started

1. Install round eliminator locally

```
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
git clone -b arbitrary2 https://github.com/olidennis/round-eliminator.git
cd round-eliminator
RUSTFLAGS="-C target-cpu=native" cargo build --release
cd ..
mv round-eliminator/target/release/server 'path-to-tlpClassifier'
```

2. Generating the data set

```
python3 -m tlp_classifier generate -w 3 -b 2
```

3. Running the classifier

```
python3 -m tlp_classifier classify -w 3 -b 2
```


