├── LICENSE ├── README.md ├── data └── Math_23K.json ├── readme └── gts_model.png ├── run_seq2tree.py └── src ├── expressions_transfer.py ├── masked_cross_entropy.py ├── models.py ├── pre_data.py └── train_and_evaluate.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShichaoSun/math_seq2tree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShichaoSun/math_seq2tree/HEAD/README.md -------------------------------------------------------------------------------- /data/Math_23K.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShichaoSun/math_seq2tree/HEAD/data/Math_23K.json -------------------------------------------------------------------------------- /readme/gts_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShichaoSun/math_seq2tree/HEAD/readme/gts_model.png -------------------------------------------------------------------------------- /run_seq2tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShichaoSun/math_seq2tree/HEAD/run_seq2tree.py -------------------------------------------------------------------------------- /src/expressions_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShichaoSun/math_seq2tree/HEAD/src/expressions_transfer.py -------------------------------------------------------------------------------- /src/masked_cross_entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShichaoSun/math_seq2tree/HEAD/src/masked_cross_entropy.py -------------------------------------------------------------------------------- /src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShichaoSun/math_seq2tree/HEAD/src/models.py -------------------------------------------------------------------------------- /src/pre_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShichaoSun/math_seq2tree/HEAD/src/pre_data.py -------------------------------------------------------------------------------- /src/train_and_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShichaoSun/math_seq2tree/HEAD/src/train_and_evaluate.py --------------------------------------------------------------------------------