Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.8 KB

File metadata and controls

43 lines (30 loc) · 1.8 KB

protein-secondary-structure-prediction

PyTorch implementations of protein secondary structure prediction on CB513.

I implemented them based on https://github.com/alrojo/CB513 and https://github.com/jadore801120/attention-is-all-you-need-pytorch.

Dataset

I used CB513 dataset of https://github.com/alrojo/CB513.

sequence length (train) sequence length (test)
amino acid (train) amino acid (test)
secondary structure label(train) secondary structure label (test)

Usage

You can get more infomations by adding -h option.

pssp-nn

python main.py

pssp-transformer

python preprocess.py
python main.py

Acknowledgement