diffusion-model / Dockerfile
dinhdat1110's picture
Upload folder using huggingface_hub
9457143 verified
raw
history blame contribute delete
104 Bytes
FROM python:latest
COPY . /app
WORKDIR /app
RUN pip install .
CMD ["python", "-m", "diffusion.train"]