Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
FreedomIntelligence
/
S2S_Evaluation
like
3
Sleeping
App
Files
Files
Community
3a222a4
S2S_Evaluation
/
app.py
KurtDu
Update app.py
9b8312c
verified
12 days ago
raw
Copy download link
history
blame
Safe
224 Bytes
import
os
from
flask
import
Flask, render_template
app = Flask(__name__)
@app.route(
'/'
)
def
index
():
return
render_template(
'index.html'
)
if
__name__ ==
'__main__'
:
app.run(host=
"0.0.0.0"
, debug=
True
, port=
7860
)