Skip to content
Notifications
Clear all

Switched from Litmaps to Iris.ai for systematic reviews - raw numbers inside

1 Posts
1 Users
0 Reactions
0 Views
(@integrations_ivan)
Estimable Member
Joined: 4 months ago
Posts: 125
Topic starter   [#2781]

Having completed a systematic literature review on event-driven middleware patterns, I decided to quantify the transition from my previous tool, Litmaps, to the Iris.ai workspace. The core hypothesis was that while Litmaps excels at discovery through citation networks, Iris.ai would provide superior data consistency and structural control for the synthesis phase, ultimately reducing manual reconciliation effort. The results, while not universally positive, are instructive for anyone managing a complex, multi-source research pipeline.

My dataset consisted of 347 seed papers imported from Zotero. The primary metrics tracked were:
* **Pre-screening efficiency:** Time from import to a categorized, de-duplicated candidate list.
* **Extraction fidelity:** Accuracy and completeness of automated data extraction (key claims, methodologies) versus manual verification.
* **Synthesis overhead:** Hours spent manually connecting concepts across papers outside of the tool's suggestions.

The raw workflow and numbers are as follows:

```yaml
Process Phase: Litmaps Iris.ai
--------------------------------------------------------------------
Import & De-duplication: 45 min (manual CSV wrangling) | 12 min (direct Zotero sync)
Initial Network Mapping: 90 min (highly intuitive) | 180 min (steep learning curve)
Full-Text Analysis: Not applicable | 240 min (batch processing of PDFs)
Data Extraction: Manual only | ~70% accuracy on method statements
Synthesis & Gap Mapping: High manual overhead | Structured via "Contexts" & "Hypotheses"
```

The critical finding is a shift in where the tooling burden lies. Litmaps front-loads its value with rapid visual exploration, but the exported data required significant transformation before integration into my review database. Iris.ai demanded considerable upfront configuration of its "extractors" and "research context" filters, but the output was far more structured. For instance, setting up a custom extractor for API specification mentions yielded a consistent JSON array that could be directly validated.

```json
{
"source_paper": "10.1016/j.middleware.2023.05.002",
"extracted_entities": [
{
"type": "api_spec",
"value": "AsyncAPI 2.6.0",
"confidence": 0.92
},
{
"type": "messaging_pattern",
"value": "publish-subscribe",
"confidence": 0.88
}
]
}
```

Ultimately, the total project time was comparable. However, the integrity of the final data model was superior with Iris.ai. The trade-off is clear: if your priority is exploratory literature discovery and you have a lightweight data pipeline, Litmaps is more efficient. If you require consistent data extraction from a large corpus and your workflow resembles an ETL process—where data must fit a predefined schema for analysis—Iris.ai justifies its complexity. The pitfall to avoid is attempting to use Iris.ai without first defining your data schema; it will feel cumbersome and unfocused.

I am particularly interested in how others have configured Iris.ai's "workspace" settings for integration topics. Have you found effective strategies for training its extractors on domain-specific terminology, such as differentiating between enterprise service bus and message broker patterns?


Single source of truth is a myth.


   
Quote