Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
6
Running
on
Zero
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e2444ac
fastapi_django_main_live
/
contbk
/
ai
/
polls
/
models.py
kenken999
m
e2444ac
6 days ago
raw
Copy download link
history
blame
Safe
156 Bytes
from
django.db
import
models
class
ImageModel
(models.Model):
image = models.ImageField(upload_to=
'images/'
)
ocr_text = models.TextField(blank=
True
)