Views
No views yet
context_sphere_v3_best.pt: best validation checkpoint from the cloud
training run.context_sphere_v3_final.pt: final checkpoint from the same run.context_sphere_v3_cloud_training_report.json: training report with data
counts, hyperparameters, validation loss, and recall-at-5.context_sphere_v3_micro_selector.pt: small local micro-training checkpoint
retained for reproducibility of early selector experiments.context_sphere_v3_neural_microtrain.json: report for the local
micro-training checkpoint.0.8114 with validation recall-at-5 of 0.7850.scripts/inference.py:1python - <<'PY'
2from huggingface_hub import snapshot_download
3
4snapshot_download(
5 repo_id="Zywdd/context-sphere-locator",
6 repo_type="model",
7 local_dir="models",
8 allow_patterns=[
9 "context_sphere_v3_best.pt",
10 "context_sphere_v3_cloud_training_report.json",
11 ],
12)
13PY1find /path/to/target/repo -name "*.py" > /tmp/context_sphere_candidate_files.txt
2
3python scripts/inference.py \
4 --checkpoint models/context_sphere_v3_best.pt \
5 --problem-statement "Django crashes when resolving a model field during migration rendering" \
6 --candidate-files /tmp/context_sphere_candidate_files.txt \
7 --out outputs/locator_smoke.jsonscripts/run_benchmarks.py through the default scripts/inference.py
configuration.1@misc{zhang2026contextsphere,
2 title = {Context Sphere: Topology-Aware Context Orchestration for Cost-Efficient LLM Repository Repair},
3 author = {Zhang, Yuwen},
4 year = {2026},
5 howpublished = {arXiv preprint and artifact release}
6}