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

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
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")