Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,14 @@
|
|
1 |
# Load model directly
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
tokenizer = AutoTokenizer.from_pretrained("PedroLancharesSanchez/graph-regression")
|
5 |
model = GraphormerForGraphClassification.from_pretrained("PedroLancharesSanchez/graph-regression")
|
|
|
1 |
# Load model directly
|
2 |
+
|
3 |
+
import gradio as gr
|
4 |
+
from huggingface_hub import AutoTokenizer, GraphormerForGraphClassification
|
5 |
+
|
6 |
+
import os
|
7 |
+
try:
|
8 |
+
import toml
|
9 |
+
except ImportError:
|
10 |
+
os.system('pip install toml')
|
11 |
+
import toml
|
12 |
|
13 |
tokenizer = AutoTokenizer.from_pretrained("PedroLancharesSanchez/graph-regression")
|
14 |
model = GraphormerForGraphClassification.from_pretrained("PedroLancharesSanchez/graph-regression")
|