Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Dorn4449
/
T5-model
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Dorn4449
commited on
Jul 30, 2023
Commit
9c15df8
·
1 Parent(s):
a4bd5be
Create Main.py
Browse files
Files changed (1)
hide
show
Main.py
+8
-0
Main.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import streamlit as st
2
+
from app.py import run_app
3
+
4
+
def main():
5
+
run_app()
6
+
7
+
if __name__ == '__main__':
8
+
main()