spb/localvm-research Public License
Running LLMs larger than memory on a consumer Mac — falsification-driven research: margin-gated deferred refinement, out-of-core verification on Apple Silicon. TR-01 published.
Python 63.2%
JavaScript 23.5%
CSS 11.8%
Shell 0.9%
Makefile 0.5%
1# =============================================================================2# Project : localvm-research3# File : .gitignore4# Purpose : Git ignore rules (venvs, caches, large artifacts, OS noise)5# Author : Simon-Pierre Boucher6# Contact : contact@spboucher.ai7# Created : 2026-08-118# Modified : 2026-08-119# Platform : macOS / Apple Silicon (arm64)10# License : All rights reserved (research code)11# =============================================================================1213# Python14__pycache__/15*.py[cod]16.venv/17venv/18*.egg-info/19.pytest_cache/20.ruff_cache/21.mypy_cache/2223# macOS24.DS_Store2526# Build artifacts27build/28*.metallib29*.air30*.o31*.dylib3233# Large model files — never commit checkpoints34*.safetensors35*.gguf36*.bin37*.pt38*.pth39models_cache/4041# Local editor/session42.claude/settings.local.json4344# Raw traces can be huge; committed results are curated JSON/CSV/plots45results/**/*.trace46results/**/*.fsusage4748# web platform: generated content snapshot + deps49web/content/50web/node_modules/5152# candidate model artifacts (rebuilt by benchmark --build)53experiments/candidate_01/implementation/models/54