A framework for learning tree-based models over sets
Project description
Set-Tree
Extending decision trees to process sets
This is the official repository for the paper: "Trees with Attention for Set Prediction Tasks" (ICML21).
This repository contains a prototypical implementaion of Set-Tree and GBeST (Gradient Boosted Set-Tree) algorithms
Getting Started
The Set-Tree package can be downloaded from PIP:
pip install settree
We also supply the code and datasets for reproducing our experimetns under exps folder.
Background and motivation
In many machine learning applications, each record represents a set of items. A set is an unordered group of items, the number of items may differ between different sets. Problems comprised from sets of items are present in diverse fields, from particle physics and cosmology to statistics and computer graphics. In this work, we present a novel tree-based algorithm for processing sets.
The model
Set-Tree model comprised from two components:
- Set-compatible split creteria: we specifically support the familly of split creteria defined by the following equation and parametrized by alpha and beta.
- Attention-Sets: a mechanism for allplying the split creteria to subsets of the input. The attention-sets are derived forn previous split-creteria and allows the model to learn more complex set-functions.
Implementation
The current implementation is based on Sklean's BaseEstimator class and is fully compatible with Sklearn.
It contains two main components: SetDataset object, that receives records as attribute. records is a list of numpy arrays, each array with shape (n_i, d) represents a single record (set). d is the dimention of each item in the record and n_i is the number of items in the i's record and may differ between records. The second componnent is SetTree model inherited from Sklean's BaseEstimator and has simillar attributes.
When configuring Set-Tree one should also configure:
operations: list of the operations to be useduse_attention_set: binary flag for activating the attention-sets mechanismattention_set_limit: the number of ancestors levels to derive attention-sets fromuse_attention_set_comp: binary flag for activating the attention-sets compatibility option
A simplified code snippet for training Set-Tree:
import settree
import numpy as np
set_data = settree.SetDataset(records=[np.random.randn(2,5) for _ in range(10)])
labels = np.random.randn(10) >= 0.5
set_tree_model = settree.SetTree(classifier=True,
criterion='entropy',
operations=settree.OPERATIONS,
use_attention_set=True,
use_attention_set_comp=True,
attention_set_limit=5,
max_depth=10)
set_tree_model.fit(set_data, labels)
A simplified code snippet for training GBeST:
import settree
import numpy as np
set_data = settree.SetDataset(records=[np.random.randn(2,5) for _ in range(10)])
labels = np.random.randn(10) >= 0.5
gbest_model = settree.GradientBoostedSetTreeClassifier(learning_rate=0.1,
n_estimators=10,
criterion='mse',
operations=settree.OPERATIONS,
use_attention_set=True,
use_attention_set_comp=True,
attention_set_limit=5,
max_depth=10)
gbest_model.fit(set_data, labels)
For further details and examples see: example.ipynb.
Citation
If you use Set-Tree in your work, please cite:
@InProceedings{pmlr-v139-hirsch21a,
title = {Trees with Attention for Set Prediction Tasks},
author = {Hirsch, Roy and Gilad-Bachrach, Ran},
booktitle = {Proceedings of the 38th International Conference on Machine Learning},
pages = {4250--4261},
year = {2021},
editor = {Meila, Marina and Zhang, Tong},
volume = {139},
series = {Proceedings of Machine Learning Research},
month = {18--24 Jul},
publisher = {PMLR}
}
License
Set-Tree is MIT licensed, as found in the LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file settree-0.1.8.tar.gz.
File metadata
- Download URL: settree-0.1.8.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.7.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
608b2db323f9e121fd537c822128ba84c8421b35c728c05a89fc080cd6044f96
|
|
| MD5 |
e23f72bb0d1d6bf2f4befc6907d47c94
|
|
| BLAKE2b-256 |
8815069df03b308f8408745da4923bf1b0f6d27f59b8baa0a360fd775aa1ce06
|
File details
Details for the file settree-0.1.8-py3-none-any.whl.
File metadata
- Download URL: settree-0.1.8-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.7.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
663bcc9e39ccc5b0f8793f108a1e9cf3f18ba80c83b77e7cf1547d5b6e8b60df
|
|
| MD5 |
c38f5389b09f9aa4eedf7021df665ca9
|
|
| BLAKE2b-256 |
dd32e93f0791102f3b266509910235ee2e2d95d6b81ef5c03e731f754a2d682b
|