CoolFace
Modelpublic

Spatial9/GravityLLM

sourceHugging Faceapache-2.0updated 7mo agoView on Hugging Face
0likes
Makefile18 linesDownload Raw Back to root
1install:2	python -m pip install -r requirements.txt3 4train:5	python train.py --qlora --bf16 --num_train_epochs 3 --train_batch_size 1 --gradient_accumulation_steps 166 7infer:8	python infer.py --model_dir outputs/GravityLLM-Qwen2.5-1.5B-S9 --input_json examples/sample_input.json --validate --output_json outputs/sample_prediction.json9 10eval:11	python evaluate.py --model_dir outputs/GravityLLM-Qwen2.5-1.5B-S9 --data_file data/valid.jsonl --report_path reports/eval_report.json12 13validate-example:14	python tools/validate_scene.py schemas/scene.schema.json examples/sample_output.json15 16synthetic-data:17	python tools/make_synthetic_dataset.py --output data/synthetic_train.jsonl --count 5018