├── DL_ClassifierModel.py ├── README.md ├── SecondStructurePredictor.py ├── cache └── README.md ├── data_sec_train.txt ├── data_seq_train.txt ├── images ├── fig1.png └── fig2.png ├── metrics.py ├── model └── README.md ├── nnLayer.py └── utils.py /DL_ClassifierModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wudejian789/2020TIANCHI-ProteinSecondaryStructurePrediction-TOP1/HEAD/DL_ClassifierModel.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wudejian789/2020TIANCHI-ProteinSecondaryStructurePrediction-TOP1/HEAD/README.md -------------------------------------------------------------------------------- /SecondStructurePredictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wudejian789/2020TIANCHI-ProteinSecondaryStructurePrediction-TOP1/HEAD/SecondStructurePredictor.py -------------------------------------------------------------------------------- /cache/README.md: -------------------------------------------------------------------------------- 1 | 此文件夹用于保存训练过程中产生的词向量等 -------------------------------------------------------------------------------- /data_sec_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wudejian789/2020TIANCHI-ProteinSecondaryStructurePrediction-TOP1/HEAD/data_sec_train.txt -------------------------------------------------------------------------------- /data_seq_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wudejian789/2020TIANCHI-ProteinSecondaryStructurePrediction-TOP1/HEAD/data_seq_train.txt -------------------------------------------------------------------------------- /images/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wudejian789/2020TIANCHI-ProteinSecondaryStructurePrediction-TOP1/HEAD/images/fig1.png -------------------------------------------------------------------------------- /images/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wudejian789/2020TIANCHI-ProteinSecondaryStructurePrediction-TOP1/HEAD/images/fig2.png -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wudejian789/2020TIANCHI-ProteinSecondaryStructurePrediction-TOP1/HEAD/metrics.py -------------------------------------------------------------------------------- /model/README.md: -------------------------------------------------------------------------------- 1 | 此文件夹主要用于保存训练的模型 -------------------------------------------------------------------------------- /nnLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wudejian789/2020TIANCHI-ProteinSecondaryStructurePrediction-TOP1/HEAD/nnLayer.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wudejian789/2020TIANCHI-ProteinSecondaryStructurePrediction-TOP1/HEAD/utils.py --------------------------------------------------------------------------------