├── .gitignore ├── .gitmodules ├── GANdemo.ipynb ├── LICENSE ├── README.md ├── Untitled.ipynb ├── configs ├── README.md ├── data.json ├── data_full.json ├── data_hand.json ├── data_small.json ├── data_wash.json ├── model.json ├── training.json ├── training_small.json ├── vocab.json └── vocab_small.json ├── data_preprocess ├── .gitignore ├── README.md ├── check.py ├── preprocess_formulas.py ├── preprocess_latex.js └── trans_text.py ├── django_app ├── __init__.py ├── run_model.py ├── settings.py ├── urls.py └── wsgi.py ├── doc ├── How-it-work.md └── Solution.md ├── evaluate_img.py ├── evaluate_txt.py ├── latex ├── lib │ ├── README.md │ ├── cli.js │ ├── katex.js │ └── src │ │ ├── Lexer.js │ │ ├── Options.js │ │ ├── ParseError.js │ │ ├── Parser.js │ │ ├── Settings.js │ │ ├── Style.js │ │ ├── buildCommon.js │ │ ├── buildHTML.js │ │ ├── buildMathML.js │ │ ├── buildTree.js │ │ ├── delimiter.js │ │ ├── domTree.js │ │ ├── environments.js │ │ ├── fontMetrics.js │ │ ├── fontMetricsData.js │ │ ├── functions.js │ │ ├── matchAt.js │ │ ├── mathMLTree.js │ │ ├── parseData.js │ │ ├── parseTree.js │ │ ├── symbols.js │ │ └── utils.js ├── license │ └── LICENSE.txt ├── t.py └── test.js ├── makefile ├── manage.py ├── model ├── __init__.py ├── base.py ├── base_torch.py ├── components │ ├── BiLSTM_Attention.py │ ├── DenseNet.py │ ├── ResNet.py │ ├── SimpleCNN.py │ ├── __init__.py │ ├── attention_cell.py │ ├── attention_mechanism.py │ ├── beam_search_decoder_cell.py │ ├── dynamic_decode.py │ ├── greedy_decoder_cell.py │ ├── positional.py │ └── seq2seq_torch.py ├── decoder.py ├── discriminator.py ├── encoder.py ├── encoder2.py ├── evaluation │ ├── __init__.py │ ├── image.py │ └── text.py ├── generator.py ├── img2seq.py ├── img2seq_2.py ├── img2seq_torch.py ├── manager.py ├── seqGAN.py └── utils │ ├── __init__.py │ ├── data_generator.py │ ├── general.py │ ├── image.py │ ├── lr_schedule.py │ ├── text.py │ └── visualize_attention.py ├── predict.py ├── requirements-gpu.txt ├── requirements.txt ├── templates ├── search_form.html └── search_result.html ├── train.ipynb ├── train.py ├── train_2.py ├── train_GAN.py ├── visualize_attention.ipynb ├── visualize_attention.py └── work └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/.gitmodules -------------------------------------------------------------------------------- /GANdemo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/GANdemo.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/README.md -------------------------------------------------------------------------------- /Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/Untitled.ipynb -------------------------------------------------------------------------------- /configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/configs/README.md -------------------------------------------------------------------------------- /configs/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/configs/data.json -------------------------------------------------------------------------------- /configs/data_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/configs/data_full.json -------------------------------------------------------------------------------- /configs/data_hand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/configs/data_hand.json -------------------------------------------------------------------------------- /configs/data_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/configs/data_small.json -------------------------------------------------------------------------------- /configs/data_wash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/configs/data_wash.json -------------------------------------------------------------------------------- /configs/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/configs/model.json -------------------------------------------------------------------------------- /configs/training.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/configs/training.json -------------------------------------------------------------------------------- /configs/training_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/configs/training_small.json -------------------------------------------------------------------------------- /configs/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/configs/vocab.json -------------------------------------------------------------------------------- /configs/vocab_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/configs/vocab_small.json -------------------------------------------------------------------------------- /data_preprocess/.gitignore: -------------------------------------------------------------------------------- 1 | log.txt -------------------------------------------------------------------------------- /data_preprocess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/data_preprocess/README.md -------------------------------------------------------------------------------- /data_preprocess/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/data_preprocess/check.py -------------------------------------------------------------------------------- /data_preprocess/preprocess_formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/data_preprocess/preprocess_formulas.py -------------------------------------------------------------------------------- /data_preprocess/preprocess_latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/data_preprocess/preprocess_latex.js -------------------------------------------------------------------------------- /data_preprocess/trans_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/data_preprocess/trans_text.py -------------------------------------------------------------------------------- /django_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_app/run_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/django_app/run_model.py -------------------------------------------------------------------------------- /django_app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/django_app/settings.py -------------------------------------------------------------------------------- /django_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/django_app/urls.py -------------------------------------------------------------------------------- /django_app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/django_app/wsgi.py -------------------------------------------------------------------------------- /doc/How-it-work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/doc/How-it-work.md -------------------------------------------------------------------------------- /doc/Solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/doc/Solution.md -------------------------------------------------------------------------------- /evaluate_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/evaluate_img.py -------------------------------------------------------------------------------- /evaluate_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/evaluate_txt.py -------------------------------------------------------------------------------- /latex/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/README.md -------------------------------------------------------------------------------- /latex/lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/cli.js -------------------------------------------------------------------------------- /latex/lib/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/katex.js -------------------------------------------------------------------------------- /latex/lib/src/Lexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/Lexer.js -------------------------------------------------------------------------------- /latex/lib/src/Options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/Options.js -------------------------------------------------------------------------------- /latex/lib/src/ParseError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/ParseError.js -------------------------------------------------------------------------------- /latex/lib/src/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/Parser.js -------------------------------------------------------------------------------- /latex/lib/src/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/Settings.js -------------------------------------------------------------------------------- /latex/lib/src/Style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/Style.js -------------------------------------------------------------------------------- /latex/lib/src/buildCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/buildCommon.js -------------------------------------------------------------------------------- /latex/lib/src/buildHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/buildHTML.js -------------------------------------------------------------------------------- /latex/lib/src/buildMathML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/buildMathML.js -------------------------------------------------------------------------------- /latex/lib/src/buildTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/buildTree.js -------------------------------------------------------------------------------- /latex/lib/src/delimiter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/delimiter.js -------------------------------------------------------------------------------- /latex/lib/src/domTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/domTree.js -------------------------------------------------------------------------------- /latex/lib/src/environments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/environments.js -------------------------------------------------------------------------------- /latex/lib/src/fontMetrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/fontMetrics.js -------------------------------------------------------------------------------- /latex/lib/src/fontMetricsData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/fontMetricsData.js -------------------------------------------------------------------------------- /latex/lib/src/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/functions.js -------------------------------------------------------------------------------- /latex/lib/src/matchAt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/matchAt.js -------------------------------------------------------------------------------- /latex/lib/src/mathMLTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/mathMLTree.js -------------------------------------------------------------------------------- /latex/lib/src/parseData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/parseData.js -------------------------------------------------------------------------------- /latex/lib/src/parseTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/parseTree.js -------------------------------------------------------------------------------- /latex/lib/src/symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/symbols.js -------------------------------------------------------------------------------- /latex/lib/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/lib/src/utils.js -------------------------------------------------------------------------------- /latex/license/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/license/LICENSE.txt -------------------------------------------------------------------------------- /latex/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/t.py -------------------------------------------------------------------------------- /latex/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/latex/test.js -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/makefile -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/manage.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/base.py -------------------------------------------------------------------------------- /model/base_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/base_torch.py -------------------------------------------------------------------------------- /model/components/BiLSTM_Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/components/BiLSTM_Attention.py -------------------------------------------------------------------------------- /model/components/DenseNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/components/DenseNet.py -------------------------------------------------------------------------------- /model/components/ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/components/ResNet.py -------------------------------------------------------------------------------- /model/components/SimpleCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/components/SimpleCNN.py -------------------------------------------------------------------------------- /model/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/components/attention_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/components/attention_cell.py -------------------------------------------------------------------------------- /model/components/attention_mechanism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/components/attention_mechanism.py -------------------------------------------------------------------------------- /model/components/beam_search_decoder_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/components/beam_search_decoder_cell.py -------------------------------------------------------------------------------- /model/components/dynamic_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/components/dynamic_decode.py -------------------------------------------------------------------------------- /model/components/greedy_decoder_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/components/greedy_decoder_cell.py -------------------------------------------------------------------------------- /model/components/positional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/components/positional.py -------------------------------------------------------------------------------- /model/components/seq2seq_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/components/seq2seq_torch.py -------------------------------------------------------------------------------- /model/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/decoder.py -------------------------------------------------------------------------------- /model/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/discriminator.py -------------------------------------------------------------------------------- /model/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/encoder.py -------------------------------------------------------------------------------- /model/encoder2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/encoder2.py -------------------------------------------------------------------------------- /model/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/evaluation/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/evaluation/image.py -------------------------------------------------------------------------------- /model/evaluation/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/evaluation/text.py -------------------------------------------------------------------------------- /model/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/generator.py -------------------------------------------------------------------------------- /model/img2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/img2seq.py -------------------------------------------------------------------------------- /model/img2seq_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/img2seq_2.py -------------------------------------------------------------------------------- /model/img2seq_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/img2seq_torch.py -------------------------------------------------------------------------------- /model/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/manager.py -------------------------------------------------------------------------------- /model/seqGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/seqGAN.py -------------------------------------------------------------------------------- /model/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/utils/data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/utils/data_generator.py -------------------------------------------------------------------------------- /model/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/utils/general.py -------------------------------------------------------------------------------- /model/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/utils/image.py -------------------------------------------------------------------------------- /model/utils/lr_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/utils/lr_schedule.py -------------------------------------------------------------------------------- /model/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/utils/text.py -------------------------------------------------------------------------------- /model/utils/visualize_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/model/utils/visualize_attention.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/predict.py -------------------------------------------------------------------------------- /requirements-gpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/requirements-gpu.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/templates/search_form.html -------------------------------------------------------------------------------- /templates/search_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/templates/search_result.html -------------------------------------------------------------------------------- /train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/train.ipynb -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/train.py -------------------------------------------------------------------------------- /train_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/train_2.py -------------------------------------------------------------------------------- /train_GAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/train_GAN.py -------------------------------------------------------------------------------- /visualize_attention.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/visualize_attention.ipynb -------------------------------------------------------------------------------- /visualize_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/visualize_attention.py -------------------------------------------------------------------------------- /work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinXueyuanStdio/LaTeX_OCR_PRO/HEAD/work/README.md --------------------------------------------------------------------------------