Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
jree423
/
diffsketcher
like
0
Text-to-Image
PyTorch
diffsketcher
text-to-svg
vector-graphics
diffusion
sketch
art
License:
mit
Model card
Files
Files and versions
xet
Community
Deploy
63a206c
diffsketcher
/
Dockerfile
jree423
Upload model with FastAPI app
6a2700f
verified
6 months ago
raw
Copy download link
history
blame
188 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"8000"
]