EXSCLAIM2.0: LLM-powered Automatic EXtraction, Separation, and Caption-based natural Language Annotation of IMages from scientific figures
If you find this tool or any of its derived capabilities useful, please consider registering as a user of Center for Nanoscale Materials. We will keep you posted of latest developments, as well as opportunities for computational resources, relevant data, and collaboration. Please contact Maria Chan ([email protected]) for details.
EXSCLAIM2.0 is a Python package combining EXSCLAIM! code with Large Language models (LLMs) that can be used for the automatic generation of datasets of labeled images from published papers. It in three main steps:
- [JournalScraper]: scrap journal websites, acquiring figures, captions, and metadata
- HTMLScraper: scrap user provided HTML files, acquiring figures, captions, and metadata
- CaptionDistributor: separate figure captions into the component chunks that refer to the figure's subfigures using LLMs and prompt engineering
- FigureSeparator: separate figures into subfigures, detect scale information, label, and type of image
We provide several tutorials demonstrating how to use EXSCLAIM2.0:
- Nature_exsclaim_search: automatically scrapping data from literature and performing Named Entity Recognition (NER) on the extracted captions.
- HTMLScrapper: automatically scrapping data from user provided HTML files
- Microscopy_CLIP_retrieval: Using Microscopy_CLIP to perform image-to-image and text-to-image retrieval on our multimodal microscopy dataset.
EXSCLAIM works with Python 3.6+. We recommend using a conda or python environment to install dependencies. To use the pipeline, you need a Query on which to run the pipeline. The query can be a JSON or Python dictionary (depending on how you are accessing the pipeline) and must have the parameters(/keys/attributes) defined in the Query JSON schema and examples can be found in the query directory.
To install directly from GitHub, run the following commands (it is recommended to run in a conda or python virtual environment):
pip install git+https://github.com/MaterialEyes/exsclaim2.0.git
If you run into errors, please check Troubleshooting. If they persist, please open an issue.
from exsclaim import Pipeline
search_query = {
...
}
results = Pipeline(search_query_json)
where search_query
is either a dictionary representing a valid JSON object, or a Pathlike string pointing towards a valid JSON file,
or
python -m exsclaim query {path to json file holding search query}
To use Docker Compose to host the service, run the following commands in the base directory:
docker compose build base
docker compose build {service(s) here}
docker compose up {service(s) here}
This material is based upon work supported by Laboratory Directed Research and Development (LDRD) funding from Argonne National Laboratory, provided by the Director, Office of Science, of the U.S. Department of Energy under Contract No. DE-AC02-06CH11357
This work was performed at the Center for Nanoscale Materials, a U.S. Department of Energy Office of Science User Facility, and supported by the U.S. Department of Energy, Office of Science, under Contract No. DE-AC02-06CH11357.
We gratefully acknowledge the computing resources provided on Bebop, a high-performance computing cluster operated by the Laboratory Computing Resource Center at Argonne National Laboratory.
If you find EXSCLAIM! useful, please encourage its development by citing the following paper in your research:
Schwenker, E., Jiang, W. Spreadbury, T., Ferrier N., Cossairt, O., Chan M.K.Y., EXSCLAIM! - An automated pipeline for the construction and
labeling of materials imaging datasets from scientific literature. arXiv e-prints (2021): arXiv-2103
@article{schwenker2021exsclaim,
title={EXSCLAIM! - An automated pipeline for the construction of labeled materials imaging datasets from literature},
author={Schwenker, Eric and Jiang, Weixin and Spreadbury, Trevor and Ferrier, Nicola and Cossairt, Oliver and Chan, Maria KY},
journal={arXiv e-prints},
pages={arXiv--2103},
year={2021}
}