test-public-space / Dockerfile
phuong-d-h-nguyen's picture
Upload folder using huggingface_hub
2414d77 verified
raw
history blame
228 Bytes
FROM python:3.9
ADD finetuning.py .
ADD finetuning_set_v1.0.json .
RUN pip install trl transformers
RUN pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
CMD ["python", "./finetuning.py"]