Atom Bioworks
commited on
Commit
•
529b593
1
Parent(s):
b200805
Update gui.py
Browse files
gui.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
from api_prediction import
|
2 |
import gradio as gr
|
3 |
import pandas as pd
|
4 |
import torch
|
@@ -15,7 +15,7 @@ desc='AptaBLE (cross-attention network), trained to predict the likelihood a DNA
|
|
15 |
|
16 |
global pipeline
|
17 |
|
18 |
-
pipeline =
|
19 |
lr=1e-6,
|
20 |
weight_decay=None,
|
21 |
epochs=None,
|
|
|
1 |
+
from api_prediction import AptaBLE_Pipeline
|
2 |
import gradio as gr
|
3 |
import pandas as pd
|
4 |
import torch
|
|
|
15 |
|
16 |
global pipeline
|
17 |
|
18 |
+
pipeline = AptaBLE_Pipeline(
|
19 |
lr=1e-6,
|
20 |
weight_decay=None,
|
21 |
epochs=None,
|