* [LLM] Multi-process and distributed QLoRA on CPU platform * Update README.md * Update README.md * Update README.md * Update README.md * enable llm-init and bind to socket * refine * Update Dockerfile * add all files of qlora cpu example to /bigdl * fix * fix k8s * Update bigdl-qlora-finetuing-entrypoint.sh * Update bigdl-qlora-finetuing-entrypoint.sh * Update bigdl-qlora-finetuning-job.yaml * fix train sync and performance issues * add node affinity * disable user to tune cpu per pod * Update bigdl-qlora-finetuning-job.yaml
15 lines
332 B
YAML
15 lines
332 B
YAML
apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: nfs-pv-bigdl-qlora-finetuning
|
|
namespace: bigdl-qlora-finetuning
|
|
spec:
|
|
capacity:
|
|
storage: 15Gi
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
persistentVolumeReclaimPolicy: Retain
|
|
storageClassName: nfs
|
|
nfs:
|
|
path: {{ .Values.nfsPath }}
|
|
server: {{ .Values.nfsServerIp }}
|