File size: 380 Bytes
3dd590c
 
9ffee63
9f348a9
 
 
c889f9d
9ffee63
1
2
3
4
5
6
7
8
import gradio as gr

model = "huggingface/yseop/distilbert-base-financial-relation-extraction"
description = "Please enter input to predict relation"
title = "FReE Demo"
examples = [["An A-B trust is a joint trust created by a married couple for the purpose of minimizing estate taxes."]]

gr.Interface.load(model, description=description, title=title, examples=examples).launch()