Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
soiz
/
model
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c682aab
model
/
app.py
soiz
Update app.py
c682aab
verified
6 months ago
raw
Copy download link
history
blame
225 Bytes
import
os
import
gradio
as
gr
# 環境変数からAPIキーを取得
api_token = os.getenv(
"HF_API_KEY"
)
# Hugging FaceモデルをAPIトークンで読み込む
gr.load(
"models/often/removebg"
, api_key=api_token).launch()