Jun 5, 2023

Improving the Unstructured Install Experience with ONNX

Unstructured

Unstructured

In recent months at Unstructured we have worked to introduce new models to our library in order to improve the extraction of data from as many documents and formats as possible. One of the models we use is a version of Facebook’s Detectron2 model trained on PDF files and images. Until a few weeks ago the users needed to install Detectron2 from source to use it in the Unstructured library, making the installation process difficult. After hearing user feedback, we set out to find a way to make the model available without relying on packages that are difficult to install. The method to achieve this used an old acquaintance: ONNX.

What is ONNX?

ONNX is a standard that allows the interoperability of machine learning models by defining common operators. Essentially: it takes the model defined in your favorite tool (Pytorch, Tensorflow, Keras, Scikit-learn) and rewrites it using these standardized operators, allowing you to use it with any other tool to run or even train it.


source: https://onnxruntime.ai/docs/execution-providers/


In this way, you can define a model in any framework, train it using the tools you already know and share it with others for further development or put it directly on an inference server. Having a model in a standardized and publicly available format has an additional advantage: it is possible to make additional optimizations in the target architecture, taking better advantage of the computing capabilities of the target machine with very few changes by the developers.


Exporting Detectron2

Once the tool was located, we got to work and found that in the Detectron2 repository there was already a script to export the models, we only needed the YAML file with the model definition which (layoutparser kindly made available here) and to run the program. The result is a file that we can use in the ONNX runtime environment and that we can easily send to CPU, GPU or even dedicated hardware.

The Detectron2 model exported to ONNX is available in the Unstructured library starting with version 0.7.0. If you had problems with the installation before, upgrading Unstructured will likely solve your issues.

So far we have only exported the same model that we had before, same parameters, same results, with fewer dependencies in the library… is it possible to do something more? Yes, but that’s a topic for another blog post, stay tuned ;)

Keep Reading

Keep Reading

Recent Stories

Recent Stories

Apr 15, 2024

Supercharge RAG Performance Using OctoAI and Unstructured Embeddings

Ronny H

LLM

Apr 2, 2024

Building Unstructured Data Pipeline with Unstructured Connectors and Databricks Volumes

Ronny H

Unstructured

Mar 9, 2024

Identity enabled RAG using Pebblo

Unstructured

LLM

Apr 15, 2024

Supercharge RAG Performance Using OctoAI and Unstructured Embeddings

Ronny H

LLM

Apr 2, 2024

Building Unstructured Data Pipeline with Unstructured Connectors and Databricks Volumes

Ronny H

Unstructured

Mar 9, 2024

Identity enabled RAG using Pebblo

Unstructured

LLM

Apr 15, 2024

Supercharge RAG Performance Using OctoAI and Unstructured Embeddings

Ronny H

LLM

Apr 2, 2024

Building Unstructured Data Pipeline with Unstructured Connectors and Databricks Volumes

Ronny H

Unstructured

Mar 9, 2024

Identity enabled RAG using Pebblo

Unstructured

LLM