ipex-llm/docker/llm/finetune/lora/cpu/docker
2023-10-09 15:45:30 +08:00
..
bigdl-lora-finetuing-entrypoint.sh separate trusted and native llm cpu finetune from lora (#9050) 2023-10-07 15:26:59 +08:00
Dockerfile separate trusted and native llm cpu finetune from lora (#9050) 2023-10-07 15:26:59 +08:00
lora_finetune.py separate trusted and native llm cpu finetune from lora (#9050) 2023-10-07 15:26:59 +08:00
README.md refine LLM containers (#9109) 2023-10-09 15:45:30 +08:00
requirements.txt separate trusted and native llm cpu finetune from lora (#9050) 2023-10-07 15:26:59 +08:00

Prepare BigDL image for Lora Finetuning

You can download directly from Dockerhub like:

docker pull intelanalytics/bigdl-llm-finetune-lora-cpu:2.4.0-SNAPSHOT

Or build the image from source:

export HTTP_PROXY=your_http_proxy
export HTTPS_PROXY=your_https_proxy

docker build \
  --build-arg http_proxy=${HTTP_PROXY} \
  --build-arg https_proxy=${HTTPS_PROXY} \
  -t intelanalytics/bigdl-llm-finetune-lora-cpu:2.4.0-SNAPSHOT \
  -f ./Dockerfile .