Anonymous Researcher commited on
Commit
8045a54
·
1 Parent(s): 3f86280

move to correct location

Browse files
README.md CHANGED
@@ -1,47 +1,238 @@
1
  ---
2
  license: mit
3
- language:
4
- - en
5
  ---
6
- This dataset provides the predicted three-dimensional structures corresponding to the Tasks Assessing Protein Embeddings (TAPE) benchmark. Specifically, it encompasses the structural data generated for the stability, fluorescence, and protein-protein interaction (PPI) affinity tasks.
7
 
8
- The reference for the TAPE benchmark is:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
  ```bibtex
11
- @inproceedings{tape2019,
12
- author = {Rao, Roshan and Bhattacharya, Nicholas and Thomas, Neil and Duan, Yan and Chen, Xi and Canny, John and Abbeel, Pieter and Song, Yun S},
13
- title = {Evaluating Protein Transfer Learning with TAPE},
14
- booktitle = {Advances in Neural Information Processing Systems}
15
- year = {2019}
16
  }
 
17
 
18
- @article{sarkisyan2016,
19
- title={Local fitness landscape of the green fluorescent protein},
20
- author={Sarkisyan, Karen S and Bolotin, Dmitry A and Meer, Margarita V and Usmanova, Dinara R and Mishin, Alexander S and Sharonov, George V and Ivankov, Dmitry N and Bozhanova, Nina G and Baranov, Mikhail S and Soylemez, Onuralp and others},
21
- journal={Nature},
22
- volume={533},
23
- number={7603},
24
- pages={397},
25
- year={2016},
26
- publisher={Nature Publishing Group}
27
- }
28
 
29
- @article{proteinnet,
30
- title={ProteinNet: a standardized data set for machine learning of protein structure},
31
- author={AlQuraishi, Mohammed},
32
- journal={arXiv preprint arXiv:1902.00249},
33
- year={2019}
34
- }
35
 
36
- @article{rocklin2017,
37
- title={Global analysis of protein folding using massively parallel design, synthesis, and testing},
38
- author={Rocklin, Gabriel J and Chidyausiku, Tamuka M and Goreshnik, Inna and Ford, Alex and Houliston, Scott and Lemak, Alexander and Carter, Lauren and Ravichandran, Rashmi and Mulligan, Vikram K and Chevalier, Aaron and others},
39
- journal={Science},
40
- volume={357},
41
- number={6347},
42
- pages={168--175},
43
- year={2017},
44
- publisher={American Association for the Advancement of Science}
45
- }
46
 
47
- ```
 
1
  ---
2
  license: mit
 
 
3
  ---
 
4
 
5
+ # ProtEnv: Protein Environment Dataset
6
+
7
+ Raw protein sequences, labels, and predicted structures for 15 downstream tasks used in ProtCompass benchmarking.
8
+
9
+ ## Dataset Overview
10
+
11
+ ProtEnv provides the foundational data for evaluating protein encoders across diverse biological tasks. It includes:
12
+ - **Raw sequences**: FASTA format protein sequences
13
+ - **Labels**: Task-specific annotations (regression/classification)
14
+ - **Predicted structures**: ESMFold-generated 3D structures (PDB format)
15
+ - **Splits**: Pre-defined train/test splits for reproducibility
16
+
17
+ ## Dataset Structure
18
+
19
+ ```
20
+ structure_encoder_data/ # Raw sequences and labels (117GB)
21
+ ├── contact_prediction/
22
+ │ ├── train.fasta
23
+ │ ├── test.fasta
24
+ │ ├── train_labels.npy
25
+ │ └── test_labels.npy
26
+ ├── secondary_structure/
27
+ ├── ppi_site/
28
+ ├── metal_binding/
29
+ ├── mutation_effect/
30
+ ├── go_bp/
31
+ ├── stability/
32
+ ├── solubility/
33
+ ├── go_mf/
34
+ ├── fluorescence/ # Note: "fluorescence" spelling maintained for compatibility
35
+ ├── ec_classification/
36
+ ├── subcellular_localization/
37
+ ├── membrane_soluble/
38
+ ├── remote_homology/
39
+ └── ppi_affinity/
40
+
41
+ predicted_structures/ # ESMFold structures (5GB compressed)
42
+ ├── fluorescence.tar.gz # 2.0GB → 444MB uncompressed
43
+ ├── solubility.tar.gz # 2.6GB → 580MB uncompressed
44
+ ├── stability.tar.gz # 444MB → 98MB uncompressed
45
+ └── ppi_affinity.tar.gz # 49MB → 11MB uncompressed
46
+ ```
47
+
48
+ ## Task Descriptions
49
+
50
+ ### Protein Function Prediction
51
+ - **EC Classification**: Enzyme Commission number prediction (multi-class)
52
+ - **GO-BP**: Gene Ontology Biological Process (multi-label)
53
+ - **GO-MF**: Gene Ontology Molecular Function (multi-label)
54
+ - **Subcellular Localization**: Cellular compartment prediction (multi-class)
55
+
56
+ ### Protein-Protein Interactions
57
+ - **PPI Site**: Binding site prediction (binary per-residue)
58
+ - **PPI Affinity**: Binding affinity prediction (regression)
59
+
60
+ ### Structure Prediction
61
+ - **Contact Prediction**: Residue-residue contact maps (binary per-pair)
62
+ - **Secondary Structure**: 3-state or 8-state structure (per-residue)
63
+
64
+ ### Biophysical Properties
65
+ - **Stability**: Thermostability prediction (regression)
66
+ - **Solubility**: Expression solubility (binary)
67
+ - **Fluorescence**: GFP fluorescence intensity (regression)
68
+ - **Metal Binding**: Metal ion binding sites (binary per-residue)
69
+ - **Membrane/Soluble**: Membrane vs soluble classification (binary)
70
+
71
+ ### Sequence Analysis
72
+ - **Remote Homology**: Fold recognition (multi-class)
73
+ - **Mutation Effect**: Fitness effect prediction (regression)
74
+
75
+ ## Download Instructions
76
+
77
+ ### Full Dataset
78
+ ```bash
79
+ # Clone the entire repository (122GB)
80
+ git lfs install
81
+ git clone https://huggingface.co/datasets/Anonymoususer2223/ProtEnv
82
+ ```
83
+
84
+ ### Specific Tasks
85
+ ```bash
86
+ from huggingface_hub import hf_hub_download
87
+
88
+ # Download raw sequences for a specific task
89
+ train_fasta = hf_hub_download(
90
+ repo_id="Anonymoususer2223/ProtEnv",
91
+ filename="structure_encoder_data/mutation_effect/train.fasta",
92
+ repo_type="dataset"
93
+ )
94
+
95
+ # Download predicted structures
96
+ structure_tar = hf_hub_download(
97
+ repo_id="Anonymoususer2223/ProtEnv",
98
+ filename="predicted_structures/fluorescence.tar.gz",
99
+ repo_type="dataset"
100
+ )
101
+ ```
102
+
103
+ ## File Formats
104
+
105
+ ### Sequences
106
+ - **Format**: FASTA
107
+ - **Headers**: `>protein_id` or `>protein_id|metadata`
108
+ - **Sequences**: Standard 20 amino acids
109
+
110
+ ### Labels
111
+ - **Format**: NumPy arrays (`.npy`)
112
+ - **Regression tasks**: Float arrays
113
+ - **Classification tasks**: Integer arrays (class indices)
114
+ - **Multi-label tasks**: Binary matrices (N × num_classes)
115
+ - **Per-residue tasks**: 2D arrays (N × sequence_length)
116
+
117
+ ### Structures
118
+ - **Format**: PDB files (compressed as `.tar.gz`)
119
+ - **Source**: ESMFold predictions
120
+ - **Quality**: pLDDT scores included in B-factor column
121
+ - **Note**: Structures are predictions, not experimental
122
+
123
+ ## Usage Example
124
+
125
+ ```python
126
+ import numpy as np
127
+ from Bio import SeqIO
128
+ from huggingface_hub import hf_hub_download
129
+
130
+ # Load sequences
131
+ fasta_path = hf_hub_download(
132
+ repo_id="Anonymoususer2223/ProtEnv",
133
+ filename="structure_encoder_data/stability/train.fasta",
134
+ repo_type="dataset"
135
+ )
136
+
137
+ sequences = []
138
+ ids = []
139
+ for record in SeqIO.parse(fasta_path, "fasta"):
140
+ sequences.append(str(record.seq))
141
+ ids.append(record.id)
142
+
143
+ # Load labels
144
+ labels_path = hf_hub_download(
145
+ repo_id="Anonymoususer2223/ProtEnv",
146
+ filename="structure_encoder_data/stability/train_labels.npy",
147
+ repo_type="dataset"
148
+ )
149
+ labels = np.load(labels_path)
150
+
151
+ print(f"Loaded {len(sequences)} proteins")
152
+ print(f"First sequence: {sequences[0][:50]}...")
153
+ print(f"First label: {labels[0]}")
154
+ ```
155
+
156
+ ## Dataset Statistics
157
+
158
+ | Task | Train Size | Test Size | Label Type | Avg Length |
159
+ |------|-----------|-----------|------------|------------|
160
+ | Contact Prediction | 25,299 | 40 | Binary (L×L) | 256 |
161
+ | Secondary Structure | 8,678 | 513 | Multi-class (L) | 208 |
162
+ | PPI Site | 15,051 | 1,672 | Binary (L) | 312 |
163
+ | Metal Binding | 5,654 | 629 | Binary (L) | 287 |
164
+ | Mutation Effect | 3,072 | 342 | Regression | 452 |
165
+ | GO-BP | 29,898 | 3,322 | Multi-label (1,943) | 394 |
166
+ | Stability | 53,614 | 2,512 | Regression | 178 |
167
+ | Solubility | 62,478 | 6,942 | Binary | 224 |
168
+ | GO-MF | 29,898 | 3,322 | Multi-label (489) | 394 |
169
+ | Fluorescence | 21,446 | 5,362 | Regression | 238 |
170
+ | EC Classification | 15,011 | 1,668 | Multi-class (538) | 382 |
171
+ | Subcellular Localization | 8,943 | 2,236 | Multi-class (10) | 493 |
172
+ | Membrane/Soluble | 3,797 | 423 | Binary | 312 |
173
+ | Remote Homology | 12,312 | 736 | Multi-class (1,195) | 209 |
174
+ | PPI Affinity | 3,899 | 434 | Regression | 156 |
175
+
176
+ **Total**: ~500K protein sequences across 15 tasks
177
+
178
+ ## Data Sources
179
+
180
+ All datasets are curated from public databases:
181
+ - **UniProt**: Protein sequences and annotations
182
+ - **PDB**: Experimental structures (for validation)
183
+ - **CATH/SCOP**: Fold classifications
184
+ - **STRING**: Protein-protein interactions
185
+ - **Gene Ontology**: Functional annotations
186
+ - **Literature**: Experimental measurements (fluorescence, stability, etc.)
187
+
188
+ ## Predicted Structures
189
+
190
+ Structures are generated using **ESMFold** (Lin et al., 2023) for tasks where experimental structures are unavailable:
191
+ - **Fluorescence**: 27,808 structures (GFP variants)
192
+ - **Solubility**: 69,420 structures
193
+ - **Stability**: 56,126 structures
194
+ - **PPI Affinity**: 4,333 structures
195
+
196
+ These structures enable structure-based encoder evaluation on tasks traditionally limited to sequence-only data.
197
+
198
+ ## Data Splits
199
+
200
+ All train/test splits are:
201
+ - **Pre-defined**: Ensures reproducibility across studies
202
+ - **Non-overlapping**: No sequence identity between train/test
203
+ - **Stratified**: Balanced label distributions where applicable
204
+ - **Temporally split**: For some tasks (e.g., mutation effect)
205
+
206
+ ## Known Issues
207
+
208
+ 1. **Spelling**: "fluorescence" directory uses British spelling for historical compatibility
209
+ 2. **Structure quality**: ESMFold predictions vary in quality (check pLDDT scores)
210
+ 3. **Label noise**: Some experimental labels may contain measurement errors
211
+ 4. **Class imbalance**: Some tasks have imbalanced class distributions
212
+
213
+ ## Citation
214
+
215
+ If you use ProtEnv, please cite:
216
 
217
  ```bibtex
218
+ @article{protcompass2026,
219
+ title={ProtCompass: Interpretable Benchmarking and Task-Aware Evaluation of Protein Encoders},
220
+ author={Your Name et al.},
221
+ journal={NeurIPS},
222
+ year={2026}
223
  }
224
+ ```
225
 
226
+ ## Related Resources
 
 
 
 
 
 
 
 
 
227
 
228
+ - **Pre-computed Embeddings**: [ProtCompass_Embeddings on HuggingFace](https://huggingface.co/datasets/Anonymoususer2223/ProtCompass_Embeddings)
229
+ - **Code Repository**: [GitHub](https://github.com/yourusername/protcompass)
230
+ - **Paper**: [arXiv](https://arxiv.org/abs/xxxx.xxxxx)
 
 
 
231
 
232
+ ## License
233
+
234
+ MIT License - Free for academic and commercial use
235
+
236
+ ## Contact
 
 
 
 
 
237
 
238
+ For questions, issues, or data requests, please open an issue on the [GitHub repository](https://github.com/yourusername/protcompass).
fluroscence/fluroscence.tar.gz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7d885e50a69ebc30ee2497cd617459a27ec729aab55da0d30c0f7769f99cf798
3
- size 2053275737
 
 
 
 
ppi_affinity/ppi_affinity.tar.gz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:42ca1fc030d1d995e8dec814b62306d0a0fb1aa4e3cb4e8d566f46d54bf50db2
3
- size 51052085
 
 
 
 
solubility/solubility.tar.gz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:907897e9d6042519d07754ef67ea3805a1ca2615a422955a947c9717a2637606
3
- size 2763525345
 
 
 
 
stability/esmfold_predictions.log DELETED
@@ -1,707 +0,0 @@
1
- Starting predictions for training set...
2
- Total sequences: 53614
3
- Using 2 GPUs
4
- ~26807 sequences per GPU
5
- /home/tianyu/miniconda3/envs/esmfold/lib/python3.9/site-packages/lightning_fabric/__init__.py:29: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81.
6
- __import__("pkg_resources").declare_namespace(__name__)
7
- /home/tianyu/miniconda3/envs/esmfold/lib/python3.9/site-packages/lightning_fabric/__init__.py:29: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81.
8
- __import__("pkg_resources").declare_namespace(__name__)
9
- /home/tianyu/miniconda3/envs/esmfold/lib/python3.9/site-packages/openfold/utils/tensor_utils.py:92: UserWarning: Using a non-tuple sequence for multidimensional indexing is deprecated and will be changed in pytorch 2.9; use x[tuple(seq)] instead of x[seq]. In pytorch 2.9 this will be interpreted as tensor index, x[torch.tensor(seq)], which will result either in an error or a different result (Triggered internally at /pytorch/torch/csrc/autograd/python_variable_indexing.cpp:306.)
10
- return data[ranges]
11
- /home/tianyu/miniconda3/envs/esmfold/lib/python3.9/site-packages/openfold/utils/tensor_utils.py:92: UserWarning: Using a non-tuple sequence for multidimensional indexing is deprecated and will be changed in pytorch 2.9; use x[tuple(seq)] instead of x[seq]. In pytorch 2.9 this will be interpreted as tensor index, x[torch.tensor(seq)], which will result either in an error or a different result (Triggered internally at /pytorch/torch/csrc/autograd/python_variable_indexing.cpp:306.)
12
- return data[ranges]
13
- GPU 0: Loading ESMFold model...
14
- GPU 0: Processing 26807 sequences (indices 0-26807)
15
- GPU 0: Progress 0/26807
16
- GPU 0: Progress 100/26807
17
- GPU 0: Progress 200/26807
18
- GPU 0: Progress 300/26807
19
- GPU 0: Progress 400/26807
20
- GPU 0: Progress 500/26807
21
- GPU 0: Progress 600/26807
22
- GPU 0: Progress 700/26807
23
- GPU 0: Progress 800/26807
24
- GPU 0: Progress 900/26807
25
- GPU 0: Progress 1000/26807
26
- GPU 0: Progress 1100/26807
27
- GPU 0: Progress 1200/26807
28
- GPU 0: Progress 1300/26807
29
- GPU 0: Progress 1400/26807
30
- GPU 0: Progress 1500/26807
31
- GPU 0: Progress 1600/26807
32
- GPU 0: Progress 1700/26807
33
- GPU 0: Progress 1800/26807
34
- GPU 0: Progress 1900/26807
35
- GPU 0: Progress 2000/26807
36
- GPU 0: Progress 2100/26807
37
- GPU 0: Progress 2200/26807
38
- GPU 0: Progress 2300/26807
39
- GPU 0: Progress 2400/26807
40
- GPU 0: Progress 2500/26807
41
- GPU 0: Progress 2600/26807
42
- GPU 0: Progress 2700/26807
43
- GPU 0: Progress 2800/26807
44
- GPU 0: Progress 2900/26807
45
- GPU 0: Progress 3000/26807
46
- GPU 0: Progress 3100/26807
47
- GPU 0: Progress 3200/26807
48
- GPU 0: Progress 3300/26807
49
- GPU 0: Progress 3400/26807
50
- GPU 0: Progress 3500/26807
51
- GPU 0: Progress 3600/26807
52
- GPU 0: Progress 3700/26807
53
- GPU 0: Progress 3800/26807
54
- GPU 0: Progress 3900/26807
55
- GPU 0: Progress 4000/26807
56
- GPU 0: Progress 4100/26807
57
- GPU 0: Progress 4200/26807
58
- GPU 0: Progress 4300/26807
59
- GPU 0: Progress 4400/26807
60
- GPU 0: Progress 4500/26807
61
- GPU 0: Progress 4600/26807
62
- GPU 0: Progress 4700/26807
63
- GPU 0: Progress 4800/26807
64
- GPU 0: Progress 4900/26807
65
- GPU 0: Progress 5000/26807
66
- GPU 0: Progress 5100/26807
67
- GPU 0: Progress 5200/26807
68
- GPU 0: Progress 5300/26807
69
- GPU 0: Progress 5400/26807
70
- GPU 0: Progress 5500/26807
71
- GPU 0: Progress 5600/26807
72
- GPU 0: Progress 5700/26807
73
- GPU 0: Progress 5800/26807
74
- GPU 0: Progress 5900/26807
75
- GPU 0: Progress 6000/26807
76
- GPU 0: Progress 6100/26807
77
- GPU 0: Progress 6200/26807
78
- GPU 0: Progress 6300/26807
79
- GPU 0: Progress 6400/26807
80
- GPU 0: Progress 6500/26807
81
- GPU 0: Progress 6600/26807
82
- GPU 0: Progress 6700/26807
83
- GPU 0: Progress 6800/26807
84
- GPU 0: Progress 6900/26807
85
- GPU 0: Progress 7000/26807
86
- GPU 0: Progress 7100/26807
87
- GPU 0: Progress 7200/26807
88
- GPU 0: Progress 7300/26807
89
- GPU 0: Progress 7400/26807
90
- GPU 0: Progress 7500/26807
91
- GPU 0: Progress 7600/26807
92
- GPU 0: Progress 7700/26807
93
- GPU 0: Progress 7800/26807
94
- GPU 0: Progress 7900/26807
95
- GPU 0: Progress 8000/26807
96
- GPU 0: Progress 8100/26807
97
- GPU 0: Progress 8200/26807
98
- GPU 0: Progress 8300/26807
99
- GPU 0: Progress 8400/26807
100
- GPU 0: Progress 8500/26807
101
- GPU 0: Progress 8600/26807
102
- GPU 0: Progress 8700/26807
103
- GPU 0: Progress 8800/26807
104
- GPU 0: Progress 8900/26807
105
- GPU 0: Progress 9000/26807
106
- GPU 0: Progress 9100/26807
107
- GPU 0: Progress 9200/26807
108
- GPU 0: Progress 9300/26807
109
- GPU 0: Progress 9400/26807
110
- GPU 0: Progress 9500/26807
111
- GPU 0: Progress 9600/26807
112
- GPU 0: Progress 9700/26807
113
- GPU 0: Progress 9800/26807
114
- GPU 0: Progress 9900/26807
115
- GPU 0: Progress 10000/26807
116
- GPU 0: Progress 10100/26807
117
- GPU 0: Progress 10200/26807
118
- GPU 0: Progress 10300/26807
119
- GPU 0: Progress 10400/26807
120
- GPU 0: Progress 10500/26807
121
- GPU 0: Progress 10600/26807
122
- GPU 0: Progress 10700/26807
123
- GPU 0: Progress 10800/26807
124
- GPU 0: Progress 10900/26807
125
- GPU 0: Progress 11000/26807
126
- GPU 0: Progress 11100/26807
127
- GPU 0: Progress 11200/26807
128
- GPU 0: Progress 11300/26807
129
- GPU 0: Progress 11400/26807
130
- GPU 0: Progress 11500/26807
131
- GPU 0: Progress 11600/26807
132
- GPU 0: Progress 11700/26807
133
- GPU 0: Progress 11800/26807
134
- GPU 0: Progress 11900/26807
135
- GPU 0: Progress 12000/26807
136
- GPU 0: Progress 12100/26807
137
- GPU 0: Progress 12200/26807
138
- GPU 0: Progress 12300/26807
139
- GPU 0: Progress 12400/26807
140
- GPU 0: Progress 12500/26807
141
- GPU 0: Progress 12600/26807
142
- GPU 0: Progress 12700/26807
143
- GPU 0: Progress 12800/26807
144
- GPU 0: Progress 12900/26807
145
- GPU 0: Progress 13000/26807
146
- GPU 0: Progress 13100/26807
147
- GPU 0: Progress 13200/26807
148
- GPU 0: Progress 13300/26807
149
- GPU 0: Progress 13400/26807
150
- GPU 0: Progress 13500/26807
151
- GPU 0: Progress 13600/26807
152
- GPU 0: Progress 13700/26807
153
- GPU 0: Progress 13800/26807
154
- GPU 0: Progress 13900/26807
155
- GPU 0: Progress 14000/26807
156
- GPU 0: Progress 14100/26807
157
- GPU 0: Progress 14200/26807
158
- GPU 0: Progress 14300/26807
159
- GPU 0: Progress 14400/26807
160
- GPU 0: Progress 14500/26807
161
- GPU 0: Progress 14600/26807
162
- GPU 0: Progress 14700/26807
163
- GPU 0: Progress 14800/26807
164
- GPU 0: Progress 14900/26807
165
- GPU 0: Progress 15000/26807
166
- GPU 0: Progress 15100/26807
167
- GPU 0: Progress 15200/26807
168
- GPU 0: Progress 15300/26807
169
- GPU 0: Progress 15400/26807
170
- GPU 0: Progress 15500/26807
171
- GPU 0: Progress 15600/26807
172
- GPU 0: Progress 15700/26807
173
- GPU 0: Progress 15800/26807
174
- GPU 0: Progress 15900/26807
175
- GPU 0: Progress 16000/26807
176
- GPU 0: Progress 16100/26807
177
- GPU 0: Progress 16200/26807
178
- GPU 0: Progress 16300/26807
179
- GPU 0: Progress 16400/26807
180
- GPU 0: Progress 16500/26807
181
- GPU 0: Progress 16600/26807
182
- GPU 0: Progress 16700/26807
183
- GPU 0: Progress 16800/26807
184
- GPU 0: Progress 16900/26807
185
- GPU 0: Progress 17000/26807
186
- GPU 0: Progress 17100/26807
187
- GPU 0: Progress 17200/26807
188
- GPU 0: Progress 17300/26807
189
- GPU 0: Progress 17400/26807
190
- GPU 0: Progress 17500/26807
191
- GPU 0: Progress 17600/26807
192
- GPU 0: Progress 17700/26807
193
- GPU 0: Progress 17800/26807
194
- GPU 0: Progress 17900/26807
195
- GPU 0: Progress 18000/26807
196
- GPU 0: Progress 18100/26807
197
- GPU 0: Progress 18200/26807
198
- GPU 0: Progress 18300/26807
199
- GPU 0: Progress 18400/26807
200
- GPU 0: Progress 18500/26807
201
- GPU 0: Progress 18600/26807
202
- GPU 0: Progress 18700/26807
203
- GPU 0: Progress 18800/26807
204
- GPU 0: Progress 18900/26807
205
- GPU 0: Progress 19000/26807
206
- GPU 0: Progress 19100/26807
207
- GPU 0: Progress 19200/26807
208
- GPU 0: Progress 19300/26807
209
- GPU 0: Progress 19400/26807
210
- GPU 0: Progress 19500/26807
211
- GPU 0: Progress 19600/26807
212
- GPU 0: Progress 19700/26807
213
- GPU 0: Progress 19800/26807
214
- GPU 0: Progress 19900/26807
215
- GPU 0: Progress 20000/26807
216
- GPU 0: Progress 20100/26807
217
- GPU 0: Progress 20200/26807
218
- GPU 0: Progress 20300/26807
219
- GPU 0: Progress 20400/26807
220
- GPU 0: Progress 20500/26807
221
- GPU 0: Progress 20600/26807
222
- GPU 0: Progress 20700/26807
223
- GPU 0: Progress 20800/26807
224
- GPU 0: Progress 20900/26807
225
- GPU 0: Progress 21000/26807
226
- GPU 0: Progress 21100/26807
227
- GPU 0: Progress 21200/26807
228
- GPU 0: Progress 21300/26807
229
- GPU 0: Progress 21400/26807
230
- GPU 0: Progress 21500/26807
231
- GPU 0: Progress 21600/26807
232
- GPU 0: Progress 21700/26807
233
- GPU 0: Progress 21800/26807
234
- GPU 0: Progress 21900/26807
235
- GPU 0: Progress 22000/26807
236
- GPU 0: Progress 22100/26807
237
- GPU 0: Progress 22200/26807
238
- GPU 0: Progress 22300/26807
239
- GPU 0: Progress 22400/26807
240
- GPU 0: Progress 22500/26807
241
- GPU 0: Progress 22600/26807
242
- GPU 0: Progress 22700/26807
243
- GPU 0: Progress 22800/26807
244
- GPU 0: Progress 22900/26807
245
- GPU 0: Progress 23000/26807
246
- GPU 0: Progress 23100/26807
247
- GPU 0: Progress 23200/26807
248
- GPU 0: Progress 23300/26807
249
- GPU 0: Progress 23400/26807
250
- GPU 0: Progress 23500/26807
251
- GPU 0: Progress 23600/26807
252
- GPU 0: Progress 23700/26807
253
- GPU 0: Progress 23800/26807
254
- GPU 0: Progress 23900/26807
255
- GPU 0: Progress 24000/26807
256
- GPU 0: Progress 24100/26807
257
- GPU 0: Progress 24200/26807
258
- GPU 0: Progress 24300/26807
259
- GPU 0: Progress 24400/26807
260
- GPU 0: Progress 24500/26807
261
- GPU 0: Progress 24600/26807
262
- GPU 0: Progress 24700/26807
263
- GPU 0: Progress 24800/26807
264
- GPU 0: Progress 24900/26807
265
- GPU 0: Progress 25000/26807
266
- GPU 0: Progress 25100/26807
267
- GPU 0: Progress 25200/26807
268
- GPU 0: Progress 25300/26807
269
- GPU 0: Progress 25400/26807
270
- GPU 0: Progress 25500/26807
271
- GPU 0: Progress 25600/26807
272
- GPU 0: Progress 25700/26807
273
- GPU 0: Progress 25800/26807
274
- GPU 0: Progress 25900/26807
275
- GPU 0: Progress 26000/26807
276
- GPU 0: Progress 26100/26807
277
- GPU 0: Progress 26200/26807
278
- GPU 0: Progress 26300/26807
279
- GPU 0: Progress 26400/26807
280
- GPU 0: Progress 26500/26807
281
- GPU 0: Progress 26600/26807
282
- GPU 0: Progress 26700/26807
283
- GPU 0: Progress 26800/26807
284
- GPU 0: Completed!
285
- GPU 1: Loading ESMFold model...
286
- GPU 1: Processing 26807 sequences (indices 26807-53614)
287
- GPU 1: Progress 0/26807
288
- GPU 1: Progress 100/26807
289
- GPU 1: Progress 200/26807
290
- GPU 1: Progress 300/26807
291
- GPU 1: Progress 400/26807
292
- GPU 1: Progress 500/26807
293
- GPU 1: Progress 600/26807
294
- GPU 1: Progress 700/26807
295
- GPU 1: Progress 800/26807
296
- GPU 1: Progress 900/26807
297
- GPU 1: Progress 1000/26807
298
- GPU 1: Progress 1100/26807
299
- GPU 1: Progress 1200/26807
300
- GPU 1: Progress 1300/26807
301
- GPU 1: Progress 1400/26807
302
- GPU 1: Progress 1500/26807
303
- GPU 1: Progress 1600/26807
304
- GPU 1: Progress 1700/26807
305
- GPU 1: Progress 1800/26807
306
- GPU 1: Progress 1900/26807
307
- GPU 1: Progress 2000/26807
308
- GPU 1: Progress 2100/26807
309
- GPU 1: Progress 2200/26807
310
- GPU 1: Progress 2300/26807
311
- GPU 1: Progress 2400/26807
312
- GPU 1: Progress 2500/26807
313
- GPU 1: Progress 2600/26807
314
- GPU 1: Progress 2700/26807
315
- GPU 1: Progress 2800/26807
316
- GPU 1: Progress 2900/26807
317
- GPU 1: Progress 3000/26807
318
- GPU 1: Progress 3100/26807
319
- GPU 1: Progress 3200/26807
320
- GPU 1: Progress 3300/26807
321
- GPU 1: Progress 3400/26807
322
- GPU 1: Progress 3500/26807
323
- GPU 1: Progress 3600/26807
324
- GPU 1: Progress 3700/26807
325
- GPU 1: Progress 3800/26807
326
- GPU 1: Progress 3900/26807
327
- GPU 1: Progress 4000/26807
328
- GPU 1: Progress 4100/26807
329
- GPU 1: Progress 4200/26807
330
- GPU 1: Progress 4300/26807
331
- GPU 1: Progress 4400/26807
332
- GPU 1: Progress 4500/26807
333
- GPU 1: Progress 4600/26807
334
- GPU 1: Progress 4700/26807
335
- GPU 1: Progress 4800/26807
336
- GPU 1: Progress 4900/26807
337
- GPU 1: Progress 5000/26807
338
- GPU 1: Progress 5100/26807
339
- GPU 1: Progress 5200/26807
340
- GPU 1: Progress 5300/26807
341
- GPU 1: Progress 5400/26807
342
- GPU 1: Progress 5500/26807
343
- GPU 1: Progress 5600/26807
344
- GPU 1: Progress 5700/26807
345
- GPU 1: Progress 5800/26807
346
- GPU 1: Progress 5900/26807
347
- GPU 1: Progress 6000/26807
348
- GPU 1: Progress 6100/26807
349
- GPU 1: Progress 6200/26807
350
- GPU 1: Progress 6300/26807
351
- GPU 1: Progress 6400/26807
352
- GPU 1: Progress 6500/26807
353
- GPU 1: Progress 6600/26807
354
- GPU 1: Progress 6700/26807
355
- GPU 1: Progress 6800/26807
356
- GPU 1: Progress 6900/26807
357
- GPU 1: Progress 7000/26807
358
- GPU 1: Progress 7100/26807
359
- GPU 1: Progress 7200/26807
360
- GPU 1: Progress 7300/26807
361
- GPU 1: Progress 7400/26807
362
- GPU 1: Progress 7500/26807
363
- GPU 1: Progress 7600/26807
364
- GPU 1: Progress 7700/26807
365
- GPU 1: Progress 7800/26807
366
- GPU 1: Progress 7900/26807
367
- GPU 1: Progress 8000/26807
368
- GPU 1: Progress 8100/26807
369
- GPU 1: Progress 8200/26807
370
- GPU 1: Progress 8300/26807
371
- GPU 1: Progress 8400/26807
372
- GPU 1: Progress 8500/26807
373
- GPU 1: Progress 8600/26807
374
- GPU 1: Progress 8700/26807
375
- GPU 1: Progress 8800/26807
376
- GPU 1: Progress 8900/26807
377
- GPU 1: Progress 9000/26807
378
- GPU 1: Progress 9100/26807
379
- GPU 1: Progress 9200/26807
380
- GPU 1: Progress 9300/26807
381
- GPU 1: Progress 9400/26807
382
- GPU 1: Progress 9500/26807
383
- GPU 1: Progress 9600/26807
384
- GPU 1: Progress 9700/26807
385
- GPU 1: Progress 9800/26807
386
- GPU 1: Progress 9900/26807
387
- GPU 1: Progress 10000/26807
388
- GPU 1: Progress 10100/26807
389
- GPU 1: Progress 10200/26807
390
- GPU 1: Progress 10300/26807
391
- GPU 1: Progress 10400/26807
392
- GPU 1: Progress 10500/26807
393
- GPU 1: Progress 10600/26807
394
- GPU 1: Progress 10700/26807
395
- GPU 1: Progress 10800/26807
396
- GPU 1: Progress 10900/26807
397
- GPU 1: Progress 11000/26807
398
- GPU 1: Progress 11100/26807
399
- GPU 1: Progress 11200/26807
400
- GPU 1: Progress 11300/26807
401
- GPU 1: Progress 11400/26807
402
- GPU 1: Progress 11500/26807
403
- GPU 1: Progress 11600/26807
404
- GPU 1: Progress 11700/26807
405
- GPU 1: Progress 11800/26807
406
- GPU 1: Progress 11900/26807
407
- GPU 1: Progress 12000/26807
408
- GPU 1: Progress 12100/26807
409
- GPU 1: Progress 12200/26807
410
- GPU 1: Progress 12300/26807
411
- GPU 1: Progress 12400/26807
412
- GPU 1: Progress 12500/26807
413
- GPU 1: Progress 12600/26807
414
- GPU 1: Progress 12700/26807
415
- GPU 1: Progress 12800/26807
416
- GPU 1: Progress 12900/26807
417
- GPU 1: Progress 13000/26807
418
- GPU 1: Progress 13100/26807
419
- GPU 1: Progress 13200/26807
420
- GPU 1: Progress 13300/26807
421
- GPU 1: Progress 13400/26807
422
- GPU 1: Progress 13500/26807
423
- GPU 1: Progress 13600/26807
424
- GPU 1: Progress 13700/26807
425
- GPU 1: Progress 13800/26807
426
- GPU 1: Progress 13900/26807
427
- GPU 1: Progress 14000/26807
428
- GPU 1: Progress 14100/26807
429
- GPU 1: Progress 14200/26807
430
- GPU 1: Progress 14300/26807
431
- GPU 1: Progress 14400/26807
432
- GPU 1: Progress 14500/26807
433
- GPU 1: Progress 14600/26807
434
- GPU 1: Progress 14700/26807
435
- GPU 1: Progress 14800/26807
436
- GPU 1: Progress 14900/26807
437
- GPU 1: Progress 15000/26807
438
- GPU 1: Progress 15100/26807
439
- GPU 1: Progress 15200/26807
440
- GPU 1: Progress 15300/26807
441
- GPU 1: Progress 15400/26807
442
- GPU 1: Progress 15500/26807
443
- GPU 1: Progress 15600/26807
444
- GPU 1: Progress 15700/26807
445
- GPU 1: Progress 15800/26807
446
- GPU 1: Progress 15900/26807
447
- GPU 1: Progress 16000/26807
448
- GPU 1: Progress 16100/26807
449
- GPU 1: Progress 16200/26807
450
- GPU 1: Progress 16300/26807
451
- GPU 1: Progress 16400/26807
452
- GPU 1: Progress 16500/26807
453
- GPU 1: Progress 16600/26807
454
- GPU 1: Progress 16700/26807
455
- GPU 1: Progress 16800/26807
456
- GPU 1: Progress 16900/26807
457
- GPU 1: Progress 17000/26807
458
- GPU 1: Progress 17100/26807
459
- GPU 1: Progress 17200/26807
460
- GPU 1: Progress 17300/26807
461
- GPU 1: Progress 17400/26807
462
- GPU 1: Progress 17500/26807
463
- GPU 1: Progress 17600/26807
464
- GPU 1: Progress 17700/26807
465
- GPU 1: Progress 17800/26807
466
- GPU 1: Progress 17900/26807
467
- GPU 1: Progress 18000/26807
468
- GPU 1: Progress 18100/26807
469
- GPU 1: Progress 18200/26807
470
- GPU 1: Progress 18300/26807
471
- GPU 1: Progress 18400/26807
472
- GPU 1: Progress 18500/26807
473
- GPU 1: Progress 18600/26807
474
- GPU 1: Progress 18700/26807
475
- GPU 1: Progress 18800/26807
476
- GPU 1: Progress 18900/26807
477
- GPU 1: Progress 19000/26807
478
- GPU 1: Progress 19100/26807
479
- GPU 1: Progress 19200/26807
480
- GPU 1: Progress 19300/26807
481
- GPU 1: Progress 19400/26807
482
- GPU 1: Progress 19500/26807
483
- GPU 1: Progress 19600/26807
484
- GPU 1: Progress 19700/26807
485
- GPU 1: Progress 19800/26807
486
- GPU 1: Progress 19900/26807
487
- GPU 1: Progress 20000/26807
488
- GPU 1: Progress 20100/26807
489
- GPU 1: Progress 20200/26807
490
- GPU 1: Progress 20300/26807
491
- GPU 1: Progress 20400/26807
492
- GPU 1: Progress 20500/26807
493
- GPU 1: Progress 20600/26807
494
- GPU 1: Progress 20700/26807
495
- GPU 1: Progress 20800/26807
496
- GPU 1: Progress 20900/26807
497
- GPU 1: Progress 21000/26807
498
- GPU 1: Progress 21100/26807
499
- GPU 1: Progress 21200/26807
500
- GPU 1: Progress 21300/26807
501
- GPU 1: Progress 21400/26807
502
- GPU 1: Progress 21500/26807
503
- GPU 1: Progress 21600/26807
504
- GPU 1: Progress 21700/26807
505
- GPU 1: Progress 21800/26807
506
- GPU 1: Progress 21900/26807
507
- GPU 1: Progress 22000/26807
508
- GPU 1: Progress 22100/26807
509
- GPU 1: Progress 22200/26807
510
- GPU 1: Progress 22300/26807
511
- GPU 1: Progress 22400/26807
512
- GPU 1: Progress 22500/26807
513
- GPU 1: Progress 22600/26807
514
- GPU 1: Progress 22700/26807
515
- GPU 1: Progress 22800/26807
516
- GPU 1: Progress 22900/26807
517
- GPU 1: Progress 23000/26807
518
- GPU 1: Progress 23100/26807
519
- GPU 1: Progress 23200/26807
520
- GPU 1: Progress 23300/26807
521
- GPU 1: Progress 23400/26807
522
- GPU 1: Progress 23500/26807
523
- GPU 1: Progress 23600/26807
524
- GPU 1: Progress 23700/26807
525
- GPU 1: Progress 23800/26807
526
- GPU 1: Progress 23900/26807
527
- GPU 1: Progress 24000/26807
528
- GPU 1: Progress 24100/26807
529
- GPU 1: Progress 24200/26807
530
- GPU 1: Progress 24300/26807
531
- GPU 1: Progress 24400/26807
532
- GPU 1: Progress 24500/26807
533
- GPU 1: Progress 24600/26807
534
- GPU 1: Progress 24700/26807
535
- GPU 1: Progress 24800/26807
536
- GPU 1: Progress 24900/26807
537
- GPU 1: Progress 25000/26807
538
- GPU 1: Progress 25100/26807
539
- GPU 1: Progress 25200/26807
540
- GPU 1: Progress 25300/26807
541
- GPU 1: Progress 25400/26807
542
- GPU 1: Progress 25500/26807
543
- GPU 1: Progress 25600/26807
544
- GPU 1: Progress 25700/26807
545
- GPU 1: Progress 25800/26807
546
- GPU 1: Progress 25900/26807
547
- GPU 1: Progress 26000/26807
548
- GPU 1: Progress 26100/26807
549
- GPU 1: Progress 26200/26807
550
- GPU 1: Progress 26300/26807
551
- GPU 1: Progress 26400/26807
552
- GPU 1: Progress 26500/26807
553
- GPU 1: Progress 26600/26807
554
- GPU 1: Progress 26700/26807
555
- GPU 1: Progress 26800/26807
556
- GPU 1: Completed!
557
- All predictions completed!
558
- Starting predictions for test set...
559
- Total sequences: 12851
560
- Using 2 GPUs
561
- ~6425 sequences per GPU
562
- /home/tianyu/miniconda3/envs/esmfold/lib/python3.9/site-packages/lightning_fabric/__init__.py:29: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81.
563
- __import__("pkg_resources").declare_namespace(__name__)
564
- /home/tianyu/miniconda3/envs/esmfold/lib/python3.9/site-packages/lightning_fabric/__init__.py:29: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81.
565
- __import__("pkg_resources").declare_namespace(__name__)
566
- /home/tianyu/miniconda3/envs/esmfold/lib/python3.9/site-packages/openfold/utils/tensor_utils.py:92: UserWarning: Using a non-tuple sequence for multidimensional indexing is deprecated and will be changed in pytorch 2.9; use x[tuple(seq)] instead of x[seq]. In pytorch 2.9 this will be interpreted as tensor index, x[torch.tensor(seq)], which will result either in an error or a different result (Triggered internally at /pytorch/torch/csrc/autograd/python_variable_indexing.cpp:306.)
567
- return data[ranges]
568
- /home/tianyu/miniconda3/envs/esmfold/lib/python3.9/site-packages/openfold/utils/tensor_utils.py:92: UserWarning: Using a non-tuple sequence for multidimensional indexing is deprecated and will be changed in pytorch 2.9; use x[tuple(seq)] instead of x[seq]. In pytorch 2.9 this will be interpreted as tensor index, x[torch.tensor(seq)], which will result either in an error or a different result (Triggered internally at /pytorch/torch/csrc/autograd/python_variable_indexing.cpp:306.)
569
- return data[ranges]
570
- GPU 0: Loading ESMFold model...
571
- GPU 0: Processing 6425 sequences (indices 0-6425)
572
- GPU 0: Progress 0/6425
573
- GPU 0: Progress 100/6425
574
- GPU 0: Progress 200/6425
575
- GPU 0: Progress 300/6425
576
- GPU 0: Progress 400/6425
577
- GPU 0: Progress 500/6425
578
- GPU 0: Progress 600/6425
579
- GPU 0: Progress 700/6425
580
- GPU 0: Progress 800/6425
581
- GPU 0: Progress 900/6425
582
- GPU 0: Progress 1000/6425
583
- GPU 0: Progress 1100/6425
584
- GPU 0: Progress 1200/6425
585
- GPU 0: Progress 1300/6425
586
- GPU 0: Progress 1400/6425
587
- GPU 0: Progress 1500/6425
588
- GPU 0: Progress 1600/6425
589
- GPU 0: Progress 1700/6425
590
- GPU 0: Progress 1800/6425
591
- GPU 0: Progress 1900/6425
592
- GPU 0: Progress 2000/6425
593
- GPU 0: Progress 2100/6425
594
- GPU 0: Progress 2200/6425
595
- GPU 0: Progress 2300/6425
596
- GPU 0: Progress 2400/6425
597
- GPU 0: Progress 2500/6425
598
- GPU 0: Progress 2600/6425
599
- GPU 0: Progress 2700/6425
600
- GPU 0: Progress 2800/6425
601
- GPU 0: Progress 2900/6425
602
- GPU 0: Progress 3000/6425
603
- GPU 0: Progress 3100/6425
604
- GPU 0: Progress 3200/6425
605
- GPU 0: Progress 3300/6425
606
- GPU 0: Progress 3400/6425
607
- GPU 0: Progress 3500/6425
608
- GPU 0: Progress 3600/6425
609
- GPU 0: Progress 3700/6425
610
- GPU 0: Progress 3800/6425
611
- GPU 0: Progress 3900/6425
612
- GPU 0: Progress 4000/6425
613
- GPU 0: Progress 4100/6425
614
- GPU 0: Progress 4200/6425
615
- GPU 0: Progress 4300/6425
616
- GPU 0: Progress 4400/6425
617
- GPU 0: Progress 4500/6425
618
- GPU 0: Progress 4600/6425
619
- GPU 0: Progress 4700/6425
620
- GPU 0: Progress 4800/6425
621
- GPU 0: Progress 4900/6425
622
- GPU 0: Progress 5000/6425
623
- GPU 0: Progress 5100/6425
624
- GPU 0: Progress 5200/6425
625
- GPU 0: Progress 5300/6425
626
- GPU 0: Progress 5400/6425
627
- GPU 0: Progress 5500/6425
628
- GPU 0: Progress 5600/6425
629
- GPU 0: Progress 5700/6425
630
- GPU 0: Progress 5800/6425
631
- GPU 0: Progress 5900/6425
632
- GPU 0: Progress 6000/6425
633
- GPU 0: Progress 6100/6425
634
- GPU 0: Progress 6200/6425
635
- GPU 0: Progress 6300/6425
636
- GPU 0: Progress 6400/6425
637
- GPU 0: Completed!
638
- GPU 1: Loading ESMFold model...
639
- GPU 1: Processing 6426 sequences (indices 6425-12851)
640
- GPU 1: Progress 0/6426
641
- GPU 1: Progress 100/6426
642
- GPU 1: Progress 200/6426
643
- GPU 1: Progress 300/6426
644
- GPU 1: Progress 400/6426
645
- GPU 1: Progress 500/6426
646
- GPU 1: Progress 600/6426
647
- GPU 1: Progress 700/6426
648
- GPU 1: Progress 800/6426
649
- GPU 1: Progress 900/6426
650
- GPU 1: Progress 1000/6426
651
- GPU 1: Progress 1100/6426
652
- GPU 1: Progress 1200/6426
653
- GPU 1: Progress 1300/6426
654
- GPU 1: Progress 1400/6426
655
- GPU 1: Progress 1500/6426
656
- GPU 1: Progress 1600/6426
657
- GPU 1: Progress 1700/6426
658
- GPU 1: Progress 1800/6426
659
- GPU 1: Progress 1900/6426
660
- GPU 1: Progress 2000/6426
661
- GPU 1: Progress 2100/6426
662
- GPU 1: Progress 2200/6426
663
- GPU 1: Progress 2300/6426
664
- GPU 1: Progress 2400/6426
665
- GPU 1: Progress 2500/6426
666
- GPU 1: Progress 2600/6426
667
- GPU 1: Progress 2700/6426
668
- GPU 1: Progress 2800/6426
669
- GPU 1: Progress 2900/6426
670
- GPU 1: Progress 3000/6426
671
- GPU 1: Progress 3100/6426
672
- GPU 1: Progress 3200/6426
673
- GPU 1: Progress 3300/6426
674
- GPU 1: Progress 3400/6426
675
- GPU 1: Progress 3500/6426
676
- GPU 1: Progress 3600/6426
677
- GPU 1: Progress 3700/6426
678
- GPU 1: Progress 3800/6426
679
- GPU 1: Progress 3900/6426
680
- GPU 1: Progress 4000/6426
681
- GPU 1: Progress 4100/6426
682
- GPU 1: Progress 4200/6426
683
- GPU 1: Progress 4300/6426
684
- GPU 1: Progress 4400/6426
685
- GPU 1: Progress 4500/6426
686
- GPU 1: Progress 4600/6426
687
- GPU 1: Progress 4700/6426
688
- GPU 1: Progress 4800/6426
689
- GPU 1: Progress 4900/6426
690
- GPU 1: Progress 5000/6426
691
- GPU 1: Progress 5100/6426
692
- GPU 1: Progress 5200/6426
693
- GPU 1: Progress 5300/6426
694
- GPU 1: Progress 5400/6426
695
- GPU 1: Progress 5500/6426
696
- GPU 1: Progress 5600/6426
697
- GPU 1: Progress 5700/6426
698
- GPU 1: Progress 5800/6426
699
- GPU 1: Progress 5900/6426
700
- GPU 1: Progress 6000/6426
701
- GPU 1: Progress 6100/6426
702
- GPU 1: Progress 6200/6426
703
- GPU 1: Progress 6300/6426
704
- GPU 1: Progress 6400/6426
705
- GPU 1: Completed!
706
- All predictions completed!
707
- All predictions completed!
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
stability/predictions_test.tar.gz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e7010fd44abf9089298b9e93ebdbac8cf6935aae02348171236eddd1236060ee
3
- size 88486584
 
 
 
 
stability/predictions_train.tar.gz DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:06c3cdddb582a34e2cf7d3f6d37e6f815100d089b2a038981c7f016f69235e8f
3
- size 372108241
 
 
 
 
stability/stability_test.fasta DELETED
The diff for this file is too large to render. See raw diff
 
stability/stability_train.fasta DELETED
The diff for this file is too large to render. See raw diff