0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-07 00:50:23 -05:00

feat(server) Enable ML support for ARM CPUs (#1880)

* Install nightly release of pytorch to enable ML support for arm CPUs

* Remove linux/arm/v7 from ML docker builds

* Add --no-cache-dir to torch installation command in ML image build

* Use PIP_NO_CACHE_DIR option in ML build to further decrease image size
This commit is contained in:
Olly Welch 2023-02-26 21:00:09 +00:00 committed by GitHub
parent 368142e79b
commit ab90b01122
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View file

@ -29,7 +29,7 @@ jobs:
platforms: "linux/arm/v7,linux/amd64,linux/arm64" platforms: "linux/arm/v7,linux/amd64,linux/arm64"
- context: "machine-learning" - context: "machine-learning"
image: "immich-machine-learning" image: "immich-machine-learning"
platforms: "linux/amd64" platforms: "linux/amd64,linux/arm64"
- context: "nginx" - context: "nginx"
image: "immich-proxy" image: "immich-proxy"
platforms: "linux/arm/v7,linux/amd64,linux/arm64" platforms: "linux/arm/v7,linux/amd64,linux/arm64"

View file

@ -1,15 +1,16 @@
FROM python:3.10 FROM python:3.10
ENV TRANSFORMERS_CACHE=/cache ENV TRANSFORMERS_CACHE=/cache \
ENV PYTHONDONTWRITEBYTECODE 1 PYTHONDONTWRITEBYTECODE=1 \
ENV PYTHONUNBUFFERED 1 PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=true
WORKDIR /usr/src/app WORKDIR /usr/src/app
RUN python -m venv /opt/venv RUN python -m venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH" ENV PATH="/opt/venv/bin:$PATH"
RUN pip install --no-cache-dir torch==1.13.1+cpu -f https://download.pytorch.org/whl/torch_stable.html RUN pip install --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
RUN pip install transformers tqdm numpy scikit-learn scipy nltk sentencepiece flask Pillow RUN pip install transformers tqdm numpy scikit-learn scipy nltk sentencepiece flask Pillow
RUN pip install --no-deps sentence-transformers RUN pip install --no-deps sentence-transformers