在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):kingyiusuen/image-to-latex开源软件地址(OpenSource Url):https://github.com/kingyiusuen/image-to-latex开源编程语言(OpenSource Language):Python 93.4%开源软件介绍(OpenSource Introduction):Image to LaTeXAn application that maps an image of a LaTeX math equation to LaTeX code. IntroductionThe problem of image-to-markup generation was attempted by Deng et al. (2016). They extracted about 100K formulas by parsing LaTeX sources of papers from the arXiv. They rendered the formulas using pdflatex and converted the rendered PDF files to PNG format. The raw and preprocessed versions of their dataset are available online. In their model, a CNN is first used to extract image features. The rows of the features are then encoded using a RNN. Finally, the encoded features are used by an RNN decoder with an attention mechanism. The model has 9.48 million parameters in total. Recently, Transformer has overtaken RNN for many language tasks, so I thought I might give it try in this problem. MethodsUsing their dataset, I trained a model that uses ResNet-18 as encoder with 2D positional encoding and a Transformer as decoder with cross-entropy loss. (Similar to the one described in Singh et al. (2021), except that I used ResNet only up to block 3 to reduce computational costs, and I excluded the line number encoding as it doesn't apply to this problem.) The model has about 3 million parameters. Model architecture. Taken from Singh et al. (2021). Initially, I used the preprocessed dataset to train my model, because the preprocessed images are downsampled to half of their original sizes for efficiency, and are grouped and padded into similar sizes to facilitate batching. However, this rigid preprocessing turned out to be a huge limitation. Although the model could achieve a reasonable performance on the test set (which was preprocessed the same way as the training set), it did not generalize well to images outside the dataset, most likely because the image quality, padding, and font size are so different from the images in the dataset. This phenomenon has also been observed by others who have attempted the same problem using the same dataset (e.g., this project, this issue and this issue). To this end, I used the raw dataset and included image augmentation (e.g. random scaling, gaussian noise) in my data processing pipeline to increase the diversity of the samples. Moreover, unlike Deng et al. (2016), I did not group images by size. Rather, I sampled them uniformly and padded them to the size of the largest image in the batch, so that the model must learn how to adapt to different padding sizes. Additional problems that I faced in the dataset:
ResultsThe best run has a character error rate (CER) of 0.17 in test set. Here is an example from the test dataset:
I also took some screenshots in some random Wikipedia articles to see whether the model generalizes to images outside of the dataset:
The model also seems to have some trouble when the image is larger than what those in the dataset. Perhaps I should have increased the range of rescaling factor in the data augmentation process. DiscussionI think I should have defined the scope of the project better:
These questions should be used to guide the data cleaning process. I found a pretty established tool called Mathpix Snip that converts handwritten formulas into LaTex code. Its vocabulary size is around 200. Excluding numbers and English letters, the number of LaTex commands it can produce is actually just above 100. (The vocabulary size of im2latex-100k is almost 500). It only includes two horizontal spacing commands ( Obvious possible improvements of this work include (1) training the model for more epochs (for the sake of time, I only trained the model for 15 epochs, but the validation loss is still going down), (2) using beam search (I only implemented greedy search), (3) using a larger model (e.g., use ResNet-34 instead of ResNet-18) and doing some hyperparameter tuning. I didn't do any of these, because I had limited computational resources (I was using Google Colab). But ultimately, I believe having data that don't have ambiguous labels and doing more data augmentation are the keys to the success of this problem. The model performacne is not as good as I want to be, but I hope the lessons I learned from this project are useful to someone wants to tackle similar problems in the future. How To UseSetupClone the repository to your computer and position your command line inside the repository folder:
Then, create a virtual environment named
Data PreprocessingRun the following command to download the im2latex-100k dataset and do all the preprocessing. (The image cropping step may take over an hour.)
Model Training and Experiment TrackingModel TrainingAn example command to start a training session:
Configurations can be modified in Experiment Tracking using Weights & BiasesThe best model checkpoint will be uploaded to Weights & Biases (W&B) automatically (you will be asked to register or login to W&B before the training starts). Here is an example command to download a trained model checkpoint from W&B:
Replace RUN_PATH with the path of your run. The run path should be in the format of For example, you can use the following command to download my best run
The checkpoint will be downloaded to a folder named Testing and Continuous IntegrationThe following tools are used to lint the codebase:
Use the following command to run all the checkers and formatters:
See Similar checks are done automatically by the pre-commit framework when a commit is made. Check out DeploymentAn API is created to make predictions using the trained model. Use the following command to get the server up and running:
You can explore the API via the generated documentation at http://0.0.0.0:8000/docs. To run the Streamlit app, create a new terminal window and use the following command:
The app should be opened in your browser automatically. You can also open it by visiting http://localhost:8501. For the app to work, you need to download the artifacts of an experiment run (see above) and have the API up and running. To create a Docker image for the API:
Acknowledgement
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论