GraphCanon updated today · GitHub synced today
19k
Stars
2.2k
Forks
366
Open issues
150
Watchers
1y
Last push
Jupyter Notebook Apache-2.0Created Mar 13, 2023
Trust & integrity
Full report- Maintenance
- Dormant (712d since push)
- As of today · Source: github_public_v1
- Provenance
- Not a fork · Personal account
- As of today · Source: github_public_v1
- Security (OSV)
- 1 critical, 5 high, 12 medium, 28 low (1 critical, 5 high, 12 medium, 28 low)
- As of today · Source: osv@v1
Public GitHub metadata and optional OSV dependency scans. Signals, not a guarantee. Trust methodology.
Overview
Instruct-tune LLaMA on consumer hardware
Capability facts
- Deploy
- Self-host
Source: dockerfile:Dockerfile · Jul 11, 2026
- Docker
- Dockerfile present
Source: dockerfile:Dockerfile · Jul 11, 2026
- Languages
- jupyter notebook, python
Source: github.language+pyproject.toml · Jul 11, 2026
Categories
Tags
README
Docker Setup & Inference
- Build the container image:
docker build -t alpaca-lora .
- Run the container (you can also use
finetune.pyand all of its parameters as shown above for training):
docker run --gpus=all --shm-size 64g -p 7860:7860 -v ${HOME}/.cache:/root/.cache --rm alpaca-lora generate.py \
--load_8bit \
--base_model 'decapoda-research/llama-7b-hf' \
--lora_weights 'tloen/alpaca-lora-7b'
- Open
https://localhost:7860in the browser
Docker Compose Setup & Inference
-
(optional) Change desired model and weights under
environmentin thedocker-compose.yml -
Build and run the container
docker-compose up -d --build
-
Open
https://localhost:7860in the browser -
See logs:
docker-compose logs -f
- Clean everything up:
docker-compose down --volumes --rmi all