Inverted Encoding
Python package for easy implementation of inverted encoding modeling as described in Scotti, Chen, & Golomb (in-prep).
Contact: scottibrain@gmail.com (Paul Scotti)
Installation
Run the following to install:
pip install inverted-encoding
Usage
from inverted_encoding import IEM, permutation, circ_diff
import numpy as np
predictions, confidences, recons = IEM(trialbyvoxel,features,stim_max=180,is_circular=True)
# use "help(IEM)" for more information, below is a summary:
# trialbyvoxel: your matrix of brain activations, does not necessarily have to be voxels
# features: array of your stimulus features (must be integers within range defined by stim_max)
# stim_max=180 means that your stimulus space ranges 0-179° degrees
# is_circular=True for a circular stimulus space, False for non-circular stimulus space
# predictions: array of predicted stimulus for each trial
# confidences: array of goodness of fit values for each trial
# recons: trial-by-trial reconstructions (matrix of num_trials x stim_max)
## Compute mean absolute error (MAE) by doing the following, then compare to null distribution:
if is_circular: # if your stimulus space is circular, need to compute circular differences
mae = np.mean(np.abs(circ_diff(predictions,features,stim_max)))
else:
mae = np.mean(np.abs(predictions-features))
null_mae_distribution = permutation(features,stim_max=180,num_perm=1000,is_circular=True)
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
inverted_encoding-0.0.22.tar.gz
(97.2 kB
view details)
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 inverted_encoding-0.0.22.tar.gz.
File metadata
- Download URL: inverted_encoding-0.0.22.tar.gz
- Upload date:
- Size: 97.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a8de1f10ef1a4f7a169dd84d942cab782023511387ba2537b8d182190c4dedb
|
|
| MD5 |
21dd943fe890d8053643d0713ca1cfbb
|
|
| BLAKE2b-256 |
966fb325d1f3e2559446fad78335ea730d356df9c0b92df0d123a0b74eb71c36
|
File details
Details for the file inverted_encoding-0.0.22-py2-none-any.whl.
File metadata
- Download URL: inverted_encoding-0.0.22-py2-none-any.whl
- Upload date:
- Size: 26.5 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
627f35c1f9404cbdb8ebc7dc483f0b1c4a437a05521ec7e35b0a95d437276379
|
|
| MD5 |
95ac5b728c23e92993f869573de6eecf
|
|
| BLAKE2b-256 |
c11cddc67e9e52156a76b2571b3917a5541e965045e5fc25dd9907a158b2582d
|