Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ottoykh
/
RealTimeTransport
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ottoykh
commited on
Feb 23, 2024
Commit
caa6dc8
·
verified
·
1 Parent(s):
6952c46
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
# Load model directly
2
+
from transformers import AutoTokenizer, AutoModel
3
+
4
+
tokenizer = AutoTokenizer.from_pretrained("ottoykh/Traffic-flow")
5
+
model = AutoModel.from_pretrained("ottoykh/Traffic-flow")