Skip to main content

The official package to compute the Triangulated Maximally Filtered Graph (TMFG).

Project description

Fast-TMFG

Fast_TMFG is an ultra-fast implementation of the Triangulated Maximally Fileterd Graph (TMFG). It is based on the work by Guido Previde Massara and is fully implemented by Antonio Briola and Tong Zheng.

The interface is fully scikit-learn compatible. Consequently, it has three main methods:

  • fit(weights, cov, output): Fits the model to the input matrix weights (e.g. a squared correlation matrix) and input matrix cov (e.g. covariance matrix). This method computes the Triangulated Maximal Filtered Graph (TMFG) based on the input weight matrix. The output parameter specifies what is the nature of the desired output:
    • sparse inverse covariance matrix (output = 'logo')
    • sparse unweighted weights matrix (output = 'unweighted_sparse_W_matrix')
    • sparse weighted weights matrix (output = 'weighted_sparse_W_matrix')
  • transform(): Returns the computed cliques and separators set of the model. The method also returns the TMFG adjacency matrix.
  • fit_transform(weights, cov, output): Fits the model to the input matrix weights (e.g. a squared correlation matrix) and input matrix cov (e.g. covariance matrix), and returns the computed cliques and separators set and the TMFG adjacency matrix over the covariance matrix input. The output parameter specifies what is the nature of the desired output:
    • sparse inverse covariance matrix (output = 'logo')
    • sparse unweighted weights matrix (output = 'unweighted_sparse_W_matrix')
    • sparse weighted weights matrix (output = 'weighted_sparse_W_matrix')

We provide a detailed explanation of each function/method. Such an explanation is entirely generated through ChatGPT.

For a full understanding of the TMFG, we refer the interested reader to the following papers:

Installation

Install the latest version of the package using PyPI: pip3 install fast-tmfg

Usage Example

import numpy as np
import pandas as pd

from fast_tmfg import *

def generate_random_df(num_rows, num_columns):
  data = np.random.randint(0, 100, size=(num_rows, num_columns))
  df = pd.DataFrame(data, columns=['col_{}'.format(i) for i in range(num_columns)])
  return df

df = generate_random_df(100, 50)
corr = np.square(df.corr())
cov = df.cov()
model = TMFG()
cliques, seps, adj_matrix = model.fit_transform(corr, cov, output='unweighted_sparse_W_matrix')

How to cite us

If you use TMFG in a scientific publication, we would appreciate citations to the following paper:

@article{briola2022dependency,
  title={Dependency structures in cryptocurrency market from high to low frequency},
  author={Briola, Antonio and Aste, Tomaso},
  journal={arXiv preprint arXiv:2206.03386},
  year={2022}
}

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

fast_tmfg-0.0.12.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fast_tmfg-0.0.12-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file fast_tmfg-0.0.12.tar.gz.

File metadata

  • Download URL: fast_tmfg-0.0.12.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.12

File hashes

Hashes for fast_tmfg-0.0.12.tar.gz
Algorithm Hash digest
SHA256 a65ef1c9b457b2526929d2eb09000a439e71fbdc8ab91c65e7c5d5ae43a9482c
MD5 45118051fcf049e2f1e84b6ef561697c
BLAKE2b-256 d66bbf75d0e44412c1921dc9a13c95cab3d0ede1c1f0c3d4479a94d3a1ac35b3

See more details on using hashes here.

File details

Details for the file fast_tmfg-0.0.12-py3-none-any.whl.

File metadata

  • Download URL: fast_tmfg-0.0.12-py3-none-any.whl
  • Upload date:
  • Size: 6.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.12

File hashes

Hashes for fast_tmfg-0.0.12-py3-none-any.whl
Algorithm Hash digest
SHA256 04a23ba109574553315c8b4307261f9fc62e5719eaeea3520c54e48d4d78fe15
MD5 ce3fe4537a83568db9006e185591da78
BLAKE2b-256 e70e0dda0efa01beb23a3284e45a549b45567ad83cbcb937971cf9902cc5cb0c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page