Evaluatr is an AI-powered system that automates the creation of Evidence Maps - structured, visual tools that organize what we know (and don’t know) about programs, policies, and interventions. It transforms hundreds of hours of manual document review into an automated, intelligent process.
The Challenge We Solve
Traditional evidence mapping requires hundreds of staff-hours manually reviewing and tagging evaluation documents. Evaluatr automates this process while maintaining accuracy through human-AI collaboration, making evidence mapping accessible and efficient.
Key Features (WIP)
Document Processing
Multi-Format Repository Reading: Seamlessly process evaluation repositories from diverse organizations with standardized outputs
OCR Processing: Extract text from scanned PDFs and images to ensure no valuable information is missed
Intelligent Document Chunking: Break down documents into meaningful segments for optimal analysis
AI-Powered Analysis
Automated Information Extraction: Extract key program details, context, and findings using advanced AI models
Smart Document Tagging: AI-assisted categorization and labeling of evaluation reports
Enhanced RAG Implementation: Enriched chunking strategy for more accurate retrieval and generation
Flexibility & Openness
Framework Agnostic Design: Compatible with multiple evaluation frameworks including IOM Strategic Results Framework and Global Compact on Migration
Open Training Data: Contribute to and benefit from community-curated training datasets
# Clone the repositorygit clone https://github.com/franckalbinet/evaluatr.gitcd evaluatr# Install in development modepip install -e .# Make changes in nbs/ directory, then compile:nbdev_prepare
Quick Start
Reading an IOM Evaluation Repository
from evaluatr.readers import IOMRepoReader# Initialize reader with your Excel filereader = IOMRepoReader('files/test/eval_repo_iom.xlsx')# Process the repositoryevaluations = reader()# Each evaluation is a standardized dictionaryforevalin evaluations[:3]: # Show first 3print(f"ID: {eval['id']}")print(f"Title: {eval['meta']['Title']}")print(f"Documents: {len(eval['docs'])}")print("---")
ID: 1a57974ab89d7280988aa6b706147ce1
Title: EX-POST EVALUATION OF THE PROJECT: NIGERIA: STRENGTHENING REINTEGRATION FOR RETURNEES (SRARP) - PHASE II
Documents: 2
---
ID: c660e774d14854e20dc74457712b50ec
Title: FINAL EVALUATION OF THE PROJECT: STRENGTHEN BORDER MANAGEMENT AND SECURITY IN MALI AND NIGER THROUGH CAPACITY BUILDING OF BORDER AUTHORITIES AND ENHANCED DIALOGUE WITH BORDER COMMUNITIES
Documents: 2
---
ID: 2cae361c6779b561af07200e3d4e4051
Title: Final Evaluation of the project "SUPPORTING THE IMPLEMENTATION OF AN E RESIDENCE PLATFORM IN CABO VERDE"
Documents: 2
---