Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
@@ -923,7 +923,7 @@ def submit_predict(predict_filepath, task, preset, target_family, opts, job_info
|
|
923 |
prediction_df[['Max. Sequence Identity', 'Max. Sequence Identity Target']] = (
|
924 |
prediction_df['X1^'].parallel_apply(calculate_max_sequence_identity).apply(pd.Series)
|
925 |
)
|
926 |
-
prediction_df.drop(['
|
927 |
|
928 |
calculate_max_sequence_identity.cache_clear()
|
929 |
|
@@ -1683,7 +1683,7 @@ with gr.Blocks(theme=theme, title='DeepSEQreen', css=CSS, delete_cache=(3600, 48
|
|
1683 |
label='Step 6. Select Additional Options',
|
1684 |
info="Experimental features - may increase the job computation time. "
|
1685 |
"Target Max. Sequence Identity to Training Targets suggest "
|
1686 |
-
"predictive reliability (higher values - greater reliability)
|
1687 |
)
|
1688 |
with gr.Row():
|
1689 |
with gr.Column():
|
|
|
923 |
prediction_df[['Max. Sequence Identity', 'Max. Sequence Identity Target']] = (
|
924 |
prediction_df['X1^'].parallel_apply(calculate_max_sequence_identity).apply(pd.Series)
|
925 |
)
|
926 |
+
prediction_df.drop(['X1^'], axis=1, inplace=True)
|
927 |
|
928 |
calculate_max_sequence_identity.cache_clear()
|
929 |
|
|
|
1683 |
label='Step 6. Select Additional Options',
|
1684 |
info="Experimental features - may increase the job computation time. "
|
1685 |
"Target Max. Sequence Identity to Training Targets suggest "
|
1686 |
+
"predictive reliability (higher values - greater reliability)."
|
1687 |
)
|
1688 |
with gr.Row():
|
1689 |
with gr.Column():
|