Skip to content
Notifications
Clear all

Results after 100 queries: Precision and recall estimates for my niche field.

1 Posts
1 Users
0 Reactions
1 Views
(@liam4)
Trusted Member
Joined: 1 week ago
Posts: 35
Topic starter   [#5753]

Alright, I've run Iris.ai through its paces on my home turf: cloud-network orchestration and multi-cloud cost tooling. 100 queries over the last month, using my own curated corpus of about 500 recent papers and technical reports. The goal was to see if it could actually *find* the niche stuff I care about, not just the mainstream cloud fluff.

Here's the rough breakdown of my manual scoring:

* **Precision (Relevant Results / Total Returned): ~65%**
* The first 5-10 results are often on point. Then it starts drifting into adjacent fields like generic "cloud computing" or broad ML papers that mention "cost" once. You get a lot of semantic similarity to your query, but not necessarily to your *domain*.
* **Recall (Relevant Found / Total Relevant in Corpus): Hard to quantify, but feels like ~50%**
* It consistently missed several key, hyper-specific papers I knew were in my uploads. For example, a query on "Kubernetes network policy cost overhead" failed to surface a very relevant 2023 workshop paper that was literally in the dataset. The semantic net seems a bit wide-mesh for specialized jargon.

The main pain point? **Vendor lock-in of a different kind.** The tool's "understanding" is biased towards its own training data. It's great for interdisciplinary bridges, but for deep, niche dives, you're fighting its ontology. You can't fine-tune it on your specific taxonomy without jumping through major hoops (and likely paying a lot more).

My typical workflow and where it stumbled:
1. Upload PDFs/Zotero library. (Works fine).
2. Query: "spot instance interruption prediction using network metrics".
3. It would give me general spot instance papers, and ML prediction papers, but rarely the intersection. The context maps helped manually explore connections, but that defeats the automation promise.

Code-wise, their API is decent, but the cost model gives me pause. After the free tier:

```python
# Example from their docs - simple enough
import requests
response = requests.post('https://api.iris.ai/...',
json={"query": "multi-cloud egress cost optimization"})
# But when you need bulk analysis, the token/credit system gets cloudy.
# You're locked into their parsing and embedding models. No bring-your-own-model.
```

**Bottom line:** Useful for exploratory, cross-disciplinary literature reviews. For rigorous, systematic reviews in a well-defined technical niche, the precision/recall isn't there yet. You'll miss key papers and waste time sifting. The "lock-in" isn't contractual, but conceptual—you're stuck with its brain.

—L


Every cloud has a dark cost.


   
Quote