Bitwise information content computation
Project description
Bit-Information-Content Tool
The method calculates how much information content each bit in a number has. In essence, it is a statistical analysis of bit sequences. For example, according to this approach, random sequences of binary values and or a sequences of ones or zeros contain no information. Once a sequence has a structure, the information content is non-zero.
[0101010101010101] # low information content
[1111111111111111] # zero information content
[0000000000000000] # zero information content
[0000111100001111] # high information content
Algorithm
The following example explains the algorithm step by step without using formulas, when possible.
In the first step, assume there is a sequence S of 4-bit numbers.
The sequence S is split into two arrays A and B.
A is created by removing the last element from S and B, by removing the first element.
The example below uses Python notatation to illustrate that.
S = [0, 1, 2, 3, 4, 5, 6, 7]
A = S[:-1] = [0, 1, 2, 3, 4, 5, 6]
B = S[1: ] = [1, 2, 3, 4, 5, 6, 7]
The next step is presented as a spreadsheet.
In our example we work with 4-bit numbers, so we can identify each bit with the index i = [0, 1, 2, 3].
For illustration, we exapand our table with i and A, and i and B.
A' and B' are the binary representations of the columns A and B, respectively.
The columns A'[i] and B'[i] are the bits at the position i.
| i | A | B | A'=bin(A) | B'=bin(B) | A'[i] | B'[i] | seq = A'[idx]B'[idx] |
|---|---|---|---|---|---|---|---|
| 0 | 0 | 1 | 0000 | 0001 | 0 | 1 | 01 |
| 0 | 1 | 2 | 0001 | 0010 | 1 | 0 | 10 |
| 0 | 2 | 3 | 0010 | 0011 | 0 | 1 | 01 |
| 0 | 3 | 4 | 0011 | 0100 | 1 | 0 | 10 |
| 0 | 4 | 5 | 0100 | 0101 | 0 | 1 | 01 |
| 0 | 5 | 6 | 0101 | 0110 | 1 | 0 | 10 |
| 0 | 6 | 7 | 0110 | 0111 | 0 | 1 | 01 |
| 1 | 0 | 1 | 0000 | 0001 | 0 | 0 | 00 |
| 1 | 1 | 2 | 0001 | 0010 | 0 | 1 | 01 |
| 1 | 2 | 3 | 0010 | 0011 | 1 | 1 | 11 |
| 1 | 3 | 4 | 0011 | 0100 | 1 | 0 | 10 |
| 1 | 4 | 5 | 0100 | 0101 | 0 | 0 | 00 |
| 1 | 5 | 6 | 0101 | 0110 | 0 | 1 | 01 |
| 1 | 6 | 7 | 0110 | 0111 | 1 | 1 | 11 |
| 2 | 0 | 1 | 0000 | 0001 | 0 | 0 | 00 |
| 2 | 1 | 2 | 0001 | 0010 | 0 | 0 | 00 |
| 2 | 2 | 3 | 0010 | 0011 | 0 | 0 | 00 |
| 2 | 3 | 4 | 0011 | 0100 | 0 | 1 | 01 |
| 2 | 4 | 5 | 0100 | 0101 | 1 | 1 | 11 |
| 2 | 5 | 6 | 0101 | 0110 | 1 | 1 | 11 |
| 2 | 6 | 7 | 0110 | 0111 | 1 | 1 | 11 |
| 3 | 0 | 1 | 0000 | 0001 | 0 | 0 | 00 |
| 3 | 1 | 2 | 0001 | 0010 | 0 | 0 | 00 |
| 3 | 2 | 3 | 0010 | 0011 | 0 | 0 | 00 |
| 3 | 3 | 4 | 0011 | 0100 | 0 | 0 | 00 |
| 3 | 4 | 5 | 0100 | 0101 | 0 | 0 | 00 |
| 3 | 5 | 6 | 0101 | 0110 | 0 | 0 | 00 |
| 3 | 6 | 7 | 0110 | 0111 | 0 | 0 | 00 |
The next stpe is groupping the table by (i, seq) columns and count the occurences.
p is the probability with wich a sequence at bit position i occurs.
| i | seq | count | p = count/7 |
|---|---|---|---|
| 0 | 00 | 0 | 0.000 |
| 0 | 01 | 4 | 0.571 |
| 0 | 10 | 3 | 0.429 |
| 0 | 11 | 0 | 0.000 |
| 1 | 00 | 2 | 0.286 |
| 1 | 01 | 2 | 0.286 |
| 1 | 10 | 1 | 0.143 |
| 1 | 11 | 2 | 0.286 |
| 2 | 00 | 3 | 0.429 |
| 2 | 01 | 1 | 0.143 |
| 2 | 10 | 0 | 0.000 |
| 2 | 11 | 3 | 0.429 |
| 3 | 00 | 7 | 1.000 |
| 3 | 01 | 0 | 0.000 |
| 3 | 10 | 0 | 0.000 |
| 3 | 11 | 0 | 0.000 |
In the last step we compute the mutual information.
To do that we take the columns i and p from the table and reshape them so that we have the probabilities for each sequence, i.e., p00, p01, p10, p11, in separate columns.
This allows us to continue our example as a spreadsheet.
Formula below computes mutual information. It says how much information a bit contains.
M' = p00 * log(p00 / (p00 + p01) / (p00 + p10)) +
p01 * log(p01 / (p00 + p01) / (p01 + p11)) +
p10 * log(p10 / (p10 + p11) / (p00 + p10)) +
p11 * log(p11 / (p10 + p11) / (p01 + p11))
M = M' / log(2)
| i | p00 | p01 | p10 | p11 | M |
|---|---|---|---|---|---|
| 0 | 0.000 | 0.571 | 0.429 | 0.000 | 0.699 |
| 1 | 0.286 | 0.286 | 0.143 | 0.286 | 2.061 |
| 2 | 0.429 | 0.143 | 0.000 | 0.429 | 0.235 |
| 3 | 1.000 | 0.000 | 0.000 | 0.000 | 0.000 |
Install
python3 -m pip install bitinformation
Usage
Compute bit information
import numpy as np
import bitinformation.bitinformation as bit
data = np.random.rand(10000)
bi = bit.BitInformation()
bi.bitinformation(data)
Compare data
import numpy as np
import bitinformation.bitinformation as bit
data1 = np.random.rand(10000)
data2 = np.random.rand(10000)
res = bit.compare_data(data1, data2)
Compare GRIB files
import numpy as np
import bitinformation.bitinformation as bit
fn1 = "grib.grib"
res = bit.compare_data(data1, data2)
This tool is based on work by Klöwer et. al: https://github.com/milankl/BitInformation.jl
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 bitinformation-0.1.1.tar.gz.
File metadata
- Download URL: bitinformation-0.1.1.tar.gz
- Upload date:
- Size: 23.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50fb9a7832a1741b66cc57e5ea8279d2031f0730f829537a3a298e99d4ddab73
|
|
| MD5 |
dbd637d1a235663acc1cbf1a6b58aeea
|
|
| BLAKE2b-256 |
93a3c3687a8744629aed38ee3afb70abd4445e1e6922b0174fe5576dd7282d4e
|
File details
Details for the file bitinformation-0.1.1-py3-none-any.whl.
File metadata
- Download URL: bitinformation-0.1.1-py3-none-any.whl
- Upload date:
- Size: 28.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0767b3c4ba556e4a8b1cd9c4ddbd278973a8f42524c0b43b891e5c39dfea40df
|
|
| MD5 |
6f557c7c4de3a8d7a172fc38586ca894
|
|
| BLAKE2b-256 |
689f013e02ef5a6aca2aaa2b36d74905dd3d161fa36e76a1c07ddad3ce6e0ce3
|