├── LICENSE ├── README.md ├── data ├── bactgrow │ ├── test_id.csv │ ├── test_ood.csv │ └── train.csv ├── oscillator1 │ ├── test_id.csv │ ├── test_ood.csv │ └── train.csv ├── oscillator2 │ ├── test_id.csv │ ├── test_ood.csv │ └── train.csv └── stressstrain │ ├── test_id.csv │ ├── test_ood.csv │ └── train.csv ├── environment.yml ├── images └── LLMSR.jpg ├── llm_engine └── engine.py ├── llmsr ├── __pycache__ │ ├── buffer.cpython-311.pyc │ ├── code_manipulation.cpython-311.pyc │ ├── config.cpython-311.pyc │ ├── evaluator.cpython-311.pyc │ ├── evaluator_accelerate.cpython-311.pyc │ ├── pipeline.cpython-311.pyc │ ├── profile.cpython-311.pyc │ └── sampler.cpython-311.pyc ├── buffer.py ├── code_manipulation.py ├── config.py ├── evaluator.py ├── evaluator_accelerate.py ├── pipeline.py ├── profile.py └── sampler.py ├── main.py ├── requirements.txt ├── run_llmsr.sh ├── run_server.sh └── specs ├── specification_bactgrow_numpy.txt ├── specification_oscillator1_numpy.txt ├── specification_oscillator2_numpy.txt ├── specification_oscillator2_torch.txt └── specification_stressstrain_numpy.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/README.md -------------------------------------------------------------------------------- /data/bactgrow/test_id.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/bactgrow/test_id.csv -------------------------------------------------------------------------------- /data/bactgrow/test_ood.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/bactgrow/test_ood.csv -------------------------------------------------------------------------------- /data/bactgrow/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/bactgrow/train.csv -------------------------------------------------------------------------------- /data/oscillator1/test_id.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/oscillator1/test_id.csv -------------------------------------------------------------------------------- /data/oscillator1/test_ood.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/oscillator1/test_ood.csv -------------------------------------------------------------------------------- /data/oscillator1/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/oscillator1/train.csv -------------------------------------------------------------------------------- /data/oscillator2/test_id.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/oscillator2/test_id.csv -------------------------------------------------------------------------------- /data/oscillator2/test_ood.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/oscillator2/test_ood.csv -------------------------------------------------------------------------------- /data/oscillator2/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/oscillator2/train.csv -------------------------------------------------------------------------------- /data/stressstrain/test_id.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/stressstrain/test_id.csv -------------------------------------------------------------------------------- /data/stressstrain/test_ood.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/stressstrain/test_ood.csv -------------------------------------------------------------------------------- /data/stressstrain/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/data/stressstrain/train.csv -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/environment.yml -------------------------------------------------------------------------------- /images/LLMSR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/images/LLMSR.jpg -------------------------------------------------------------------------------- /llm_engine/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llm_engine/engine.py -------------------------------------------------------------------------------- /llmsr/__pycache__/buffer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/__pycache__/buffer.cpython-311.pyc -------------------------------------------------------------------------------- /llmsr/__pycache__/code_manipulation.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/__pycache__/code_manipulation.cpython-311.pyc -------------------------------------------------------------------------------- /llmsr/__pycache__/config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/__pycache__/config.cpython-311.pyc -------------------------------------------------------------------------------- /llmsr/__pycache__/evaluator.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/__pycache__/evaluator.cpython-311.pyc -------------------------------------------------------------------------------- /llmsr/__pycache__/evaluator_accelerate.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/__pycache__/evaluator_accelerate.cpython-311.pyc -------------------------------------------------------------------------------- /llmsr/__pycache__/pipeline.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/__pycache__/pipeline.cpython-311.pyc -------------------------------------------------------------------------------- /llmsr/__pycache__/profile.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/__pycache__/profile.cpython-311.pyc -------------------------------------------------------------------------------- /llmsr/__pycache__/sampler.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/__pycache__/sampler.cpython-311.pyc -------------------------------------------------------------------------------- /llmsr/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/buffer.py -------------------------------------------------------------------------------- /llmsr/code_manipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/code_manipulation.py -------------------------------------------------------------------------------- /llmsr/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/config.py -------------------------------------------------------------------------------- /llmsr/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/evaluator.py -------------------------------------------------------------------------------- /llmsr/evaluator_accelerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/evaluator_accelerate.py -------------------------------------------------------------------------------- /llmsr/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/pipeline.py -------------------------------------------------------------------------------- /llmsr/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/profile.py -------------------------------------------------------------------------------- /llmsr/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/llmsr/sampler.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_llmsr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/run_llmsr.sh -------------------------------------------------------------------------------- /run_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/run_server.sh -------------------------------------------------------------------------------- /specs/specification_bactgrow_numpy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/specs/specification_bactgrow_numpy.txt -------------------------------------------------------------------------------- /specs/specification_oscillator1_numpy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/specs/specification_oscillator1_numpy.txt -------------------------------------------------------------------------------- /specs/specification_oscillator2_numpy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/specs/specification_oscillator2_numpy.txt -------------------------------------------------------------------------------- /specs/specification_oscillator2_torch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/specs/specification_oscillator2_torch.txt -------------------------------------------------------------------------------- /specs/specification_stressstrain_numpy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deep-symbolic-mathematics/LLM-SR/HEAD/specs/specification_stressstrain_numpy.txt --------------------------------------------------------------------------------