A Python package for tabular data analysis using TabMap.
Project description
TabMap
Interpretable Discovery of Patterns in Tabular Data via Spatially Semantic Topographic Maps
Nature Biomedical Engineering, 2024. HTML | PDF | Cite
TL;DR: Python implementation of TabMap proposed in our paper.
- TabMap unravels intertwined relationships in tabular data by transforming each data sample into a spatially semantic 2D topographic map, which we refer to as TabMap.
- A TabMap preserves the original feature values as pixel intensities, with the relationships among the features spatially encoded in the map (the strength of two inter-related features correlates with their distance on the map).
- Our approach makes it possible to apply 2D convolutional neural networks to extract association patterns in the data to facilitate data analysis, and offers interpretability by ranking features according to importance.
- We demonstrate TabMap's superior predictive performance across a diverse set of biomedical datasets.
Table of Contents
Installation
tabmap is available on PyPI. To install tabmap, run the following command:
pip install tabmap
For development, you can check the latest sources with the command:
git clone https://github.com/rui-yan/TabMap.git
cd TabMap
conda env create -f tabmap_conda.yml
conda activate tabmap
- NVIDIA GPU (Tested on Nvidia Quadro RTX 8000 48G x 1) on local workstations
- Python (3.10.13), torch (1.13.1), numpy (1.23.1), pandas (1.5.3), scikit-learn (1.4.2), scipy (1.10.1), seaborn (0.12.2); For further details on the software and package versions used, please refer to the
tabmap_conda.ymlfile.
Train and evaluate the TabMap classifier
TabMap construction: transforming tabular data into 2D topographic maps
from tabmap_construction import TabMapGenerator
generator = TabMapGenerator(metric='correlation', loss_fun='kl_loss')
X_tabmap = generator.fit_transform(X)
Parameters:
- metric: Metric used to compute the feature inter-relationships. {'correlation', 'euclidean', 'gower'}
- loss_fun: Loss function used for computing the optimal transport. {'kl_loss', 'sqeuclidean', 'square_loss'}
- epsilon: Entropic regularization parameter (>=0). default=0 (no regularization applied)
- version: Version of the distance matrix calculation algorithm. default='v2.0'
- Versions 'v1.0' and 'v2.0' use different methods for computing grid distances.
- num_iter: Number of iterations for the optimal transport problem. default=10
TabMapGenerator class functions:
- fit(X, truncate=False): Computes the coupling matrix to map the feature space to the 2D map space. X is of shape (n_samples, n_features). The
truncateparameter determines whether to truncate or zero-pad the data to fit the 2D map. - transform(X): Performs the mapping from feature space to image space.
- fit_transform(X, truncate=False): Fits the generator to the data and then performs the transformation.
Train a 2D convolutional neural network (CNN) model for classification
python main.py
Refer to the main.py file for details on model training and evaluation. This file also includes k-fold cross-validation, hyperparameter tuning, and comparisons with other classifiers used to generate the results presented in our paper.
Example Jupyter notebooks for using TabMap
- Benchmarking: Tutorial_Benchmarking.ipynb.
- Classification: Tutorial_Classification.ipynb.
- Feature importance analysis: Tutorial_Feature_Importance.ipynb.
Citation
If you find our work helpful in your research or if you use any source codes, please cite our paper.
@article{yan2024interpretable,
title={Interpretable discovery of patterns in tabular data via spatially semantic topographic maps},
author={Yan, Rui and Islam, Md Tauhidual and Xing, Lei},
journal={Nature Biomedical Engineering},
pages={1--12},
year={2024},
publisher={Nature Publishing Group UK London}
}
Project details
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 tabmap-0.1.1.tar.gz.
File metadata
- Download URL: tabmap-0.1.1.tar.gz
- Upload date:
- Size: 18.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff7643cad14cc701d1f179770b3c0eaca1e715a0f6d9f08f764ad93f51e103ef
|
|
| MD5 |
84f9f3cda7364fd0c9f069feadce5313
|
|
| BLAKE2b-256 |
2bbc5c12b09850dd22693d1ace50f3a7d67dd1908c27d8f93a9a095ec0e66d82
|
File details
Details for the file tabmap-0.1.1-py3-none-any.whl.
File metadata
- Download URL: tabmap-0.1.1-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00412a89bba052a8da73755568f735ea7322bf67357d746201ebe0475c8d54e8
|
|
| MD5 |
e0fa8e681524d80020396535cbc40d2f
|
|
| BLAKE2b-256 |
0c0f4b155374e6bf67208bd53f365eb419e736a961c9dba8daf937d5e012a06f
|