├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── assets ├── .DS_Store ├── github-contamination-case.png ├── github-data-sample.png ├── github-difficulty.png ├── github-domain.png ├── github-main.png └── github-tsne.png ├── scripts └── train │ ├── deepmath-1.5b.sh │ ├── deepmath-omn-1.5b.sh │ ├── deepmath-zero-7b.sh │ └── deepmath-zero-math-7b.sh ├── tsne ├── README.md ├── emb_2d.npy ├── tsne.py ├── tsne_plot_dapo17k.pdf ├── tsne_plot_deepmath103k.pdf ├── tsne_plot_ds_preview.pdf ├── tsne_plot_openr1.pdf ├── tsne_plot_openrs.pdf ├── tsne_plot_orz129k.pdf └── tsne_plot_still.pdf ├── uni_eval.py └── utils ├── __init__.py ├── chat_template.py ├── data_utils.py ├── openmathinst_utils.py ├── polymath ├── bundled │ ├── latex2sympy2 │ │ ├── README.md │ │ ├── asciimath_printer.py │ │ ├── assets │ │ │ └── PS.g4 │ │ ├── gen │ │ │ ├── PSLexer.py │ │ │ ├── PSListener.py │ │ │ └── PSParser.py │ │ └── latex2sympy2.py │ └── symeval │ │ ├── _modidx.py │ │ └── core.py ├── judge.py ├── run_eval.py └── scripts.py └── reward_utils ├── __Init__.py ├── reward_func.py └── reward_func_2.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/github-contamination-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/assets/github-contamination-case.png -------------------------------------------------------------------------------- /assets/github-data-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/assets/github-data-sample.png -------------------------------------------------------------------------------- /assets/github-difficulty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/assets/github-difficulty.png -------------------------------------------------------------------------------- /assets/github-domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/assets/github-domain.png -------------------------------------------------------------------------------- /assets/github-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/assets/github-main.png -------------------------------------------------------------------------------- /assets/github-tsne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/assets/github-tsne.png -------------------------------------------------------------------------------- /scripts/train/deepmath-1.5b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/scripts/train/deepmath-1.5b.sh -------------------------------------------------------------------------------- /scripts/train/deepmath-omn-1.5b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/scripts/train/deepmath-omn-1.5b.sh -------------------------------------------------------------------------------- /scripts/train/deepmath-zero-7b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/scripts/train/deepmath-zero-7b.sh -------------------------------------------------------------------------------- /scripts/train/deepmath-zero-math-7b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/scripts/train/deepmath-zero-math-7b.sh -------------------------------------------------------------------------------- /tsne/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/tsne/README.md -------------------------------------------------------------------------------- /tsne/emb_2d.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/tsne/emb_2d.npy -------------------------------------------------------------------------------- /tsne/tsne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/tsne/tsne.py -------------------------------------------------------------------------------- /tsne/tsne_plot_dapo17k.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/tsne/tsne_plot_dapo17k.pdf -------------------------------------------------------------------------------- /tsne/tsne_plot_deepmath103k.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/tsne/tsne_plot_deepmath103k.pdf -------------------------------------------------------------------------------- /tsne/tsne_plot_ds_preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/tsne/tsne_plot_ds_preview.pdf -------------------------------------------------------------------------------- /tsne/tsne_plot_openr1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/tsne/tsne_plot_openr1.pdf -------------------------------------------------------------------------------- /tsne/tsne_plot_openrs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/tsne/tsne_plot_openrs.pdf -------------------------------------------------------------------------------- /tsne/tsne_plot_orz129k.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/tsne/tsne_plot_orz129k.pdf -------------------------------------------------------------------------------- /tsne/tsne_plot_still.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/tsne/tsne_plot_still.pdf -------------------------------------------------------------------------------- /uni_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/uni_eval.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/chat_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/chat_template.py -------------------------------------------------------------------------------- /utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/data_utils.py -------------------------------------------------------------------------------- /utils/openmathinst_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/openmathinst_utils.py -------------------------------------------------------------------------------- /utils/polymath/bundled/latex2sympy2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/bundled/latex2sympy2/README.md -------------------------------------------------------------------------------- /utils/polymath/bundled/latex2sympy2/asciimath_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/bundled/latex2sympy2/asciimath_printer.py -------------------------------------------------------------------------------- /utils/polymath/bundled/latex2sympy2/assets/PS.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/bundled/latex2sympy2/assets/PS.g4 -------------------------------------------------------------------------------- /utils/polymath/bundled/latex2sympy2/gen/PSLexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/bundled/latex2sympy2/gen/PSLexer.py -------------------------------------------------------------------------------- /utils/polymath/bundled/latex2sympy2/gen/PSListener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/bundled/latex2sympy2/gen/PSListener.py -------------------------------------------------------------------------------- /utils/polymath/bundled/latex2sympy2/gen/PSParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/bundled/latex2sympy2/gen/PSParser.py -------------------------------------------------------------------------------- /utils/polymath/bundled/latex2sympy2/latex2sympy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/bundled/latex2sympy2/latex2sympy2.py -------------------------------------------------------------------------------- /utils/polymath/bundled/symeval/_modidx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/bundled/symeval/_modidx.py -------------------------------------------------------------------------------- /utils/polymath/bundled/symeval/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/bundled/symeval/core.py -------------------------------------------------------------------------------- /utils/polymath/judge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/judge.py -------------------------------------------------------------------------------- /utils/polymath/run_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/run_eval.py -------------------------------------------------------------------------------- /utils/polymath/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/polymath/scripts.py -------------------------------------------------------------------------------- /utils/reward_utils/__Init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/reward_utils/reward_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/reward_utils/reward_func.py -------------------------------------------------------------------------------- /utils/reward_utils/reward_func_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwhe99/DeepMath/HEAD/utils/reward_utils/reward_func_2.py --------------------------------------------------------------------------------