PERLA Extract is an automated data extraction tool that uses large language models (LLMs) to identify and structure key information on perovskite solar cells from scientific papers. This includes device parameters, material compositions, and performance metrics, all of which are collected and stored in the PERLA database.
- π¬ Intelligent Extraction: Automatically extracts structured data about perovskite solar cells from scientific papers
- π Multiple PDF Processors: Supports multiple PDF preprocessing methods (PyMuPDF, Nougat, Marker)
- π€ LLM Integration: Works with various LLM providers via LiteLLM (Claude, GPT-4, GPT-5, and more)
- β Structured Output: Validates and structures data using Pydantic models
- π Post-processing: Automatic unit normalization and data validation
- π Evaluation Metrics: Built-in precision and recall evaluation against ground truth
- π€ Export Formats: Export to JSON or NOMAD archive format
- π€ Automated Discovery: Papersbot integration for automated paper discovery and processing
- π¦ Evaluation Dataset: Includes ground truth data and extractions from multiple LLM models and human annotators for benchmarking
- Python 3.10 or higher
- pip
pip install perla-extractFor specific PDF processors:
# For Nougat OCR processing
pip install perla-extract[nougat]
# For Marker PDF processing
pip install perla-extract[marker]
# For Redis-based caching (requires Redis server)
pip install perla-extract[cache]
# For development dependencies
pip install perla-extract[dev]Note on Caching: By default, Perla Extract uses disk-based caching for LLM calls. If you have a Redis server available, you can install the cache extra and configure Redis via environment variables (REDIS_HOST, REDIS_PORT, REDIS_PASSWORD, REDIS_TTL) for persistent caching across sessions with better performance.
The data directory (src/perla_extract/data/) contains:
- Extractions: Results from multiple LLM models and human annotators (including consensus annotations)
- Ground Truth: Manually checked and corrected datasets (dev set for optimization, test set for evaluation)
See src/perla_extract/data/README.md for detailed information about the data structure and organization.
Set up the required environment variables for LLM API access and paper downloading:
# For Claude models (default)
export ANTHROPIC_API_KEY="your-anthropic-api-key"
# For OpenAI models (alternative)
export OPENAI_API_KEY="your-openai-api-key"
# For downloading papers via Papersbot
export UNPAYWALL_EMAIL="your-email@example.com"LiteLLM supports many providers. Set the appropriate API key environment variable for your chosen model:
ANTHROPIC_API_KEYfor Claude modelsOPENAI_API_KEYfor GPT modelsGOOGLE_API_KEYfor Gemini models- See LiteLLM documentation for other providers
The simplest way to see Perla Extract in action:
perla-extractThis will:
- Download papers using Papersbot
- Extract data from all PDFs using the default model
- Clean up downloaded files
# Single PDF
perla-extract extract pdfs/paper.pdf
# With specific model
perla-extract extract --model_name=gpt-4o-mini pdfs/paper.pdf --output results/
# Directory of PDFs
perla-extract extract pdfs/ --output extractions/# Evaluate model against ground truth
perla-extract evaluate src/perla_extract/data/extractions/claude-opus-4-1-20250805/ src/perla_extract/data/ground_truth/test/
# Evaluate human performance
perla-extract evaluate src/perla_extract/data/extractions/humans/Consensus/ src/perla_extract/data/ground_truth/test/Extract data from PDF files.
perla-extract extract <filepath> [--model_name=MODEL] [--preprocessor=PROCESSOR] [--output=DIR] [--nomad] [--nomad_upload_id=ID]Key options:
--model_name: LLM model (default:claude-sonnet-4-20250514). Supports any LiteLLM model (e.g.,gpt-4o-mini,claude-3-5-sonnet-20240620)--preprocessor: PDF processor -pymupdf,nougat, ormarker(default:pymupdf)--output: Output directory (default:./extractions)--nomad: Upload to NOMAD repository--use_cache: Enable API call caching
Evaluate extraction results against ground truth.
perla-extract evaluate <extraction_dir> <truth_dir>Download papers automatically. Requires UNPAYWALL_EMAIL environment variable (see Quick Start for setup).
Run prompt optimization pipeline.
Perla Extract can automatically upload extraction results to NOMAD, a materials science data repository.
Setup:
export NOMAD_USERNAME="your-username"
export NOMAD_PASSWORD="your-password"
export NOMAD_URL="https://nomad-lab.eu/prod/v1/" # OptionalUsage:
# Upload to new upload
perla-extract extract --nomad pdfs/paper.pdf
# Append to existing upload
perla-extract extract --nomad --nomad_upload_id="upload-id" pdfs/paper.pdfEach device/cell is uploaded as a separate NOMAD entry with automatic format conversion.
- Sherjeel Shabih - sherjeel.shabih@hu-berlin.de
- Pepe Marquez - jose.marquez@physik.hu-berlin.de
- Kevin Jablonka - mail@kjablonka.com
- Sharat Patil - sharat.patil@physik.hu-berlin.de
If you use Perla Extract in your research, please cite:
TODO: