AttentionAML (an Attention-Based MLP Model for Identifying Acute Myeloid Leukemia Subtypes), an accurate and effective model for AML subtype identification based on transcriptomic profiling only.
- Clone the AttentionAML git repository
git clone https://github.com/wan-mlab/AttentionAML.git
- Navigate to the directory of AttentionAML package
cd /your path/AttentionAML
pip install .
- Modify the System Path and import module
import sys; sys.path.append('AttentionAML')
from AttentionAML import AttentionAML
- unzip and read the test file
test = pd.read_csv('TPM_test.csv', index_col=0)
- AML subtype prediction
AttentionAML.Predict(Exp = test, exp_type = 'TPM')
Lusheng Li, Shibiao Wan