PedroLancharesSanchez commited on
Commit
b2c5b3d
·
verified ·
1 Parent(s): d1b6379

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -1,5 +1,14 @@
1
  # Load model directly
2
- from transformers import AutoTokenizer, GraphormerForGraphClassification
 
 
 
 
 
 
 
 
 
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")