PedroLancharesSanchez's picture
Update app.py
b2c5b3d verified
raw
history blame
405 Bytes
# Load model directly
import gradio as gr
from huggingface_hub import AutoTokenizer, GraphormerForGraphClassification
import os
try:
import toml
except ImportError:
os.system('pip install toml')
import toml
tokenizer = AutoTokenizer.from_pretrained("PedroLancharesSanchez/graph-regression")
model = GraphormerForGraphClassification.from_pretrained("PedroLancharesSanchez/graph-regression")