Spaces:
Running on Zero
Running on Zero
reference LigandMPNN space
Browse files- app.py +1 -2
- utils/pipelines.py +1 -1
app.py
CHANGED
|
@@ -60,8 +60,7 @@ with gr.Blocks(title="RFD3 Test") as demo:
|
|
| 60 |
|
| 61 |
|
| 62 |
Example files for these three tutorials can be found in the [`examples` directory of this repo](https://huggingface.co/spaces/hugging-science/RFdiffusion3/tree/main/examples). They are
|
| 63 |
-
all taken from [RFD3's amazing Github repository.](https://github.com/RosettaCommons/foundry/tree/production/models/rfd3)
|
| 64 |
-
|
| 65 |
|
| 66 |
""")
|
| 67 |
|
|
|
|
| 60 |
|
| 61 |
|
| 62 |
Example files for these three tutorials can be found in the [`examples` directory of this repo](https://huggingface.co/spaces/hugging-science/RFdiffusion3/tree/main/examples). They are
|
| 63 |
+
all taken from [RFD3's amazing Github repository.](https://github.com/RosettaCommons/foundry/tree/production/models/rfd3). This space pairs well with the [companion LigandMPNN space](https://huggingface.co/spaces/hugging-science/LigandMPNN) for inverse folding!
|
|
|
|
| 64 |
|
| 65 |
""")
|
| 66 |
|
utils/pipelines.py
CHANGED
|
@@ -166,4 +166,4 @@ def generation_with_input_config(input_file, pdb_file, num_batches, num_designs_
|
|
| 166 |
|
| 167 |
except subprocess.CalledProcessError as e:
|
| 168 |
print("subprocess threw an error", e.stderr)
|
| 169 |
-
return gr.update(value=f"
|
|
|
|
| 166 |
|
| 167 |
except subprocess.CalledProcessError as e:
|
| 168 |
print("subprocess threw an error", e.stderr)
|
| 169 |
+
return gr.update(value=f"Generation failed:\n{e.stderr}"), None, None
|