mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-23 14:29:01 +06:00

* Change the import of kenlm from github to pypi * Change the import of kenlm from github to pypi in circleci config * Fix code quality issues * Fix isort issue, add kenlm in extras for audio * Add kenlm to deps * Add kenlm to deps * Commit 'make fixup' changes * Remove version from kenlm deps * commit make fixup changes * Remove manual installation of kenlm * Remove manual installation of kenlm * Remove manual installation of kenlm
20 lines
1.2 KiB
Docker
20 lines
1.2 KiB
Docker
FROM python:3.8
|
|
LABEL maintainer="Hugging Face"
|
|
|
|
RUN apt update
|
|
RUN git clone https://github.com/huggingface/transformers
|
|
|
|
RUN python3 -m pip install --no-cache-dir --upgrade pip && python3 -m pip install --no-cache-dir git+https://github.com/huggingface/doc-builder ./transformers[dev]
|
|
RUN apt-get -y update && apt-get install -y libsndfile1-dev && apt install -y tesseract-ocr
|
|
|
|
# Torch needs to be installed before deepspeed
|
|
RUN python3 -m pip install --no-cache-dir ./transformers[deepspeed]
|
|
|
|
RUN python3 -m pip install --no-cache-dir torch-scatter -f https://data.pyg.org/whl/torch-$(python -c "from torch import version; print(version.__version__.split('+')[0])")+cpu.html
|
|
RUN python3 -m pip install --no-cache-dir torchvision git+https://github.com/facebookresearch/detectron2.git pytesseract
|
|
RUN python3 -m pip install --no-cache-dir pytorch-quantization --extra-index-url https://pypi.ngc.nvidia.com
|
|
RUN python3 -m pip install -U "itsdangerous<2.1.0"
|
|
|
|
# Test if the image could successfully build the doc. before publishing the image
|
|
RUN doc-builder build transformers transformers/docs/source/en --build_dir doc-build-dev --notebook_dir notebooks/transformers_doc --clean
|
|
RUN rm -rf doc-build-dev |