gitextract_jxo7rqko/ ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docker/ │ ├── api.dockerfile │ └── build-api.sh ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── index.rst │ ├── installation.md │ ├── make.bat │ ├── pix2tex.rst │ └── requirements.txt ├── notebooks/ │ ├── LaTeX_OCR_test.ipynb │ └── LaTeX_OCR_training.ipynb ├── pix2tex/ │ ├── __init__.py │ ├── __main__.py │ ├── api/ │ │ ├── __init__.py │ │ ├── app.py │ │ ├── run.py │ │ └── streamlit.py │ ├── cli.py │ ├── dataset/ │ │ ├── __init__.py │ │ ├── arxiv.py │ │ ├── data/ │ │ │ └── .gitkeep │ │ ├── dataset.py │ │ ├── demacro-test.py │ │ ├── demacro.py │ │ ├── extract_latex.py │ │ ├── latex2png.py │ │ ├── postprocess.py │ │ ├── preprocessing/ │ │ │ ├── __init__.py │ │ │ ├── generate_latex_vocab.py │ │ │ ├── preprocess_formulas.py │ │ │ ├── preprocess_latex.js │ │ │ └── third_party/ │ │ │ ├── README.md │ │ │ ├── katex/ │ │ │ │ ├── .#katex.js │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── cli.js │ │ │ │ ├── katex.js │ │ │ │ ├── package.json │ │ │ │ └── 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 │ │ │ │ ├── mathMLTree.js │ │ │ │ ├── parseData.js │ │ │ │ ├── parseTree.js │ │ │ │ ├── symbols.js │ │ │ │ └── utils.js │ │ │ └── match-at/ │ │ │ ├── README.md │ │ │ ├── lib/ │ │ │ │ └── matchAt.js │ │ │ └── package.json │ │ ├── render.py │ │ ├── scraping.py │ │ └── transforms.py │ ├── eval.py │ ├── gui.py │ ├── model/ │ │ ├── __init__.py │ │ ├── checkpoints/ │ │ │ ├── __init__.py │ │ │ └── get_latest_checkpoint.py │ │ ├── dataset/ │ │ │ └── tokenizer.json │ │ └── settings/ │ │ ├── config-vit.yaml │ │ ├── config.yaml │ │ └── debug.yaml │ ├── models/ │ │ ├── __init__.py │ │ ├── hybrid.py │ │ ├── transformer.py │ │ ├── utils.py │ │ └── vit.py │ ├── resources/ │ │ ├── MathJax.js │ │ ├── __init__.py │ │ ├── resources.py │ │ └── resources.qrc │ ├── setup_desktop.py │ ├── train.py │ ├── train_resizer.py │ └── utils/ │ ├── __init__.py │ └── utils.py ├── setup.cfg └── setup.py