jslin09's picture
Update app.py
519271e
raw
history blame
476 Bytes
import gradio as gr
API_URL = "https://api-inference.huggingface.co/models/jslin09/bloom-560m-finetuned-fraud"
headers = {"Authorization": "Bearer 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"} # Read only
iface = gr.Interface.load("huggingface/models/jslin09/bloom-560m-finetuned-fraud",
examples=[["闕很大明知金融帳戶之存摺、提款卡及密碼係供自己使用之重要理財工具,"]],
api_key="Bearer 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"
)
iface.launch()