Skip to main content

Standalone Python module providing an implementation of interaction concordance index.

Project description

IC-index

An implementation of interaction concordance index as presented in [1].

Installation:

Run
pip install ic_index
to install from PyPI, or
pip install git+https://github.com/TurkuML/Interaction-Concordance-Index
to install directly from github.

Example code for testing in Python interpreter

import numpy as np
import ic_index

# Generate random labels
example_Y = np.random.rand(35)
# Generate row indices of the pairs
example_rows = np.repeat(range(5), 7)
# Generate column indices of the pairs
example_cols = np.array(list(range(7))*5)

# Calculate IC-index with random predictions, result in [0, 1]:
print(ic_index.ic_index(example_rows, example_cols, example_Y, np.random.rand(35)))

# Calculate IC-index with correct labels, result 1:
print(ic_index.ic_index(example_rows, example_cols, example_Y, example_Y))

# Calculate IC-index with reversed labels, result 0:
print(ic_index.ic_index(example_rows, example_cols, example_Y, -example_Y))

# Calculate IC-index with constant labels, result 0.5:
print(ic_index.ic_index(example_rows, example_cols, example_Y, np.ones((35))))

References:

[1] Pahikkala, T., Numminen, R., Movahedi, P., Karmitsa, N., & Airola, A. (2025). Interaction Concordance Index: Performance Evaluation for Interaction Prediction Methods. arXiv preprint arXiv:2510.14419.

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

ic_index-0.1.3.tar.gz (9.2 kB view details)

Uploaded Source

Built Distributions

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

ic_index-0.1.3-cp314-cp314t-win_amd64.whl (115.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

ic_index-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl (679.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ic_index-0.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (688.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ic_index-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl (122.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ic_index-0.1.3-cp314-cp314-win_amd64.whl (98.2 kB view details)

Uploaded CPython 3.14Windows x86-64

ic_index-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl (684.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ic_index-0.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (684.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ic_index-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (113.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ic_index-0.1.3-cp313-cp313-win_amd64.whl (96.0 kB view details)

Uploaded CPython 3.13Windows x86-64

ic_index-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl (691.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ic_index-0.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (689.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ic_index-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (112.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ic_index-0.1.3-cp312-cp312-win_amd64.whl (96.3 kB view details)

Uploaded CPython 3.12Windows x86-64

ic_index-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl (697.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ic_index-0.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (697.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ic_index-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (113.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ic_index-0.1.3-cp311-cp311-win_amd64.whl (95.3 kB view details)

Uploaded CPython 3.11Windows x86-64

ic_index-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (704.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ic_index-0.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (696.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

ic_index-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (112.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file ic_index-0.1.3.tar.gz.

File metadata

  • Download URL: ic_index-0.1.3.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ic_index-0.1.3.tar.gz
Algorithm Hash digest
SHA256 e0703bd3f5c04aca0cc6bb3c509ba0f6b77dd3f00c472165173bed35f18c3f95
MD5 c138b8c8c6629d0b63bab918ec981f3f
BLAKE2b-256 0007199eedb534fd7a1bdbd2aa42b9e403022864cf21e2fce402742273a715f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3.tar.gz:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: ic_index-0.1.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 115.0 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ic_index-0.1.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3be8e65cb772e1f98438ef0e69871fe9618bf827d2ad7da4ef5513a4331cbc32
MD5 75b8acae342b5b3c98792b1775ee8481
BLAKE2b-256 1e4746ae942c2a58178092da537aba48f50af91eef06f571eed3cb8a4d5897e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp314-cp314t-win_amd64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75764f7d749fdff2c44ca0e365321b2594844253eae3b769d2dc0f43ac1ba6e5
MD5 aa256c741fd8b2d636fc72e7f3e1bead
BLAKE2b-256 aa8d28cfd4a287822e8d056801820fdc006838ad3b24a5d4879d0cc28a109105

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01ac1f423792621566d0659bf5e835e933f3444665cb316c0867bc1e32533b8a
MD5 6191e9d8dc1515e020717aa1ddf07d28
BLAKE2b-256 ed74864ca18e409a68140b4039e9b1ea2e6fa8da6a29d23885cb9212af12f1d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fa6fefa9e75f90290c008d72bfb8fb5e2aad10bc1c4deec6bfcd62bf2829edf
MD5 26f9ded9b3d07b9c730977384ed60b1d
BLAKE2b-256 8c701ceb2a967b8e4d5d8f575e4f9b691bb5d0c50959d9e6decb93e0743f1b7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ic_index-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 98.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ic_index-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 78c159f8e8ccafc4101f3d6ad11460c141bac611f8115403a2efe1e29da1d2bc
MD5 e536ef5cf9cbf669cdb32ecbf416aab7
BLAKE2b-256 9156ded569b5f0f875b598ff12d752c2bd44a86dbcecd16812530e35c5d722a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a45fc1ccd16d8a1f3257cef370ddf1ed663bf1b311dd1285c818d2eef0baa4db
MD5 228ddd2dce87151046a7b90e442c6924
BLAKE2b-256 8bc92fe4bf75dd6f2b9f4ee3463aeba976e96667450972664068b1a307b130f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f049493dbedcdf7d41fddb69ea422e5dd2c8e3d14c888c185d4220de45b77744
MD5 3bae01d59aef1a968e2417352b8bf773
BLAKE2b-256 ed55596990df2aa14f90b97062f0014539ffdea694abed0d7d827def8995ae64

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01b98c0efc6f87966cb9bb000cb423c70107b419b490bad951d2bc3b258543b8
MD5 8ccff4b5ec1cac895e1a78f750e67343
BLAKE2b-256 5c3a89c4c03060a704a08d92099fbe3a82b51969167742877994a3d24ae43f98

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ic_index-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 96.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ic_index-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 55c6d8173855ba817598c54fe5fd49fd1b66dc039307222c707152892e6df787
MD5 b77d99d830bc3b11ec66c98264201259
BLAKE2b-256 9e8e0e21ef02b4bceeeefbb378592e1442ca8d7ed7b1b3d5f385244073fe2583

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88c851e68a3af4e30a14aafd628d521c13f40bc226515e085b9b7ac065afd156
MD5 3816b052d608727a120fb321ab78f9dc
BLAKE2b-256 93a88dca9d63e4984ef1175e504448d563cb95bd3c4bd32a0f5359ac67f7cd0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3983894defb505cfe3067c5217ffe786c2c54db3d2b24360fdd0c8eedf9b167b
MD5 15c0526f1039b348e2a571faea24f914
BLAKE2b-256 718e22a1c08935389d43e2fa5530372b87c8cdcb11424e93528830256ed6f3b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2854c32776ceb45a1029b59a2cb667324cb010b3866ba710a1e2ba55e30ed796
MD5 41c267902d54c355f8a6ba7acaec4241
BLAKE2b-256 7aa87d6107623317143814e33f7efdd3874ccf5e7929584fcc1b0386ce925f4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ic_index-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 96.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ic_index-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e31e4a3fd5afe0ac0e0488660368b8070e58e56d4a1e629eebcc5446b1ece605
MD5 9d9404b0c3e7b2024e49380c3d867185
BLAKE2b-256 3fa84708855e580eaae9bff88222f49a9711b0e62a5957e329dfe190472dc5df

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c23a93a99c7dfbf26b2a2cb794a331f6d94aa3a399d87ccfa1b1849c1fefbc31
MD5 3d7ffd1561914ebeccabccc0fd10d075
BLAKE2b-256 a3400e5bc18e7dae09221b8ff446a4a3ad139108689e4f7066ada2e44876d866

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a4671d6b40a2b400ffe2cf00d784c832c7cd5642481e7fa79b5107af7a2cd2f3
MD5 1fc9d23e761ad8cbee9db082a7f2cc99
BLAKE2b-256 14faa326fc406645115f916672507bcaf9beb252bc3de79a5324b2a7ba382772

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 774682d8a442bd963608013ac330724119deee88aac83e5374935a4f856f9557
MD5 ead94e59f57af40b0930d220964dfa8d
BLAKE2b-256 03994e891853d0818907c6b607087cf078f7e38bbe20b667f6faac9dd1ccd1b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ic_index-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 95.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for ic_index-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c64465a1c9999b5b9d0f8c22b39c29b231b9d61dc0b547ef5df7151f1fd216c1
MD5 6418cac385422755b6b2bf08c16817b2
BLAKE2b-256 fb6e9f24ea5715ee5a383ade23212ea5e1173d8dbe654d5e7e90cbe7d2a0f39d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02405bafbcd1d8089526faee72cdc5a44bd4082c8f95802deddb3850ce980b69
MD5 b2d8ca5f4ef833ccd694ced870e97763
BLAKE2b-256 a2ca0299505a7ca371da2ffa8a14d8bf8a771d85cac08431fdef0303e8ecb388

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f948b63372fe6892980eb60892a8f0ddea5c961a24fc336a7e835939c753d06d
MD5 a0ac7f2c5de1d039db06968a52aaf28b
BLAKE2b-256 34510c2f6ca02aa2be5d01c071770948cb94c60fe98416171ed00cdaac63dd7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ic_index-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ic_index-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e116bfadd44fc3a02b5f487ef3d095d69130d65b11a7028f08ee03d50751963c
MD5 a00735dee7fd89e9fa45fb1a7d56582d
BLAKE2b-256 f3064184802ee0bf30fce5513404182dd78e3d3f6d88d3807d854c6c8defdd08

See more details on using hashes here.

Provenance

The following attestation bundles were made for ic_index-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on TurkuML/Interaction-Concordance-Index

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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