Update app.py
Browse files
app.py
CHANGED
|
@@ -23,9 +23,9 @@ import time
|
|
| 23 |
import gradio as gr
|
| 24 |
|
| 25 |
model_checkpoint = "facebook/esm2_t6_8M_UR50D"
|
| 26 |
-
pdb_path = "structure"
|
| 27 |
# seq_path = "test3.csv"
|
| 28 |
-
temp_path = "temp"
|
| 29 |
|
| 30 |
def setup_seed(seed):
|
| 31 |
torch.manual_seed(seed)
|
|
|
|
| 23 |
import gradio as gr
|
| 24 |
|
| 25 |
model_checkpoint = "facebook/esm2_t6_8M_UR50D"
|
| 26 |
+
pdb_path = pathlib.Path(__file__).parent.joinpath("structure" )
|
| 27 |
# seq_path = "test3.csv"
|
| 28 |
+
temp_path = pathlib.Path(__file__).parent.joinpath("temp" )
|
| 29 |
|
| 30 |
def setup_seed(seed):
|
| 31 |
torch.manual_seed(seed)
|