jslin09's picture
Update app.py
837275c
raw
history blame
462 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/jslin09/bloom-560m-finetuned-fraud",
examples=[["闕很大明知金融帳戶之存摺、提款卡及密碼係供自己使用之重要理財工具,"]],
api_key="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"
)
iface.launch()