HackerTrans
TopNewTrendsCommentsPastAskShowJobs

MarcellLunczer

no profile record

Submissions

Show HN: News metadata dataset for media bias research

kaggle.com
1 points·by MarcellLunczer·hace 3 meses·0 comments

[untitled]

1 points·by MarcellLunczer·hace 3 meses·0 comments

Show HN: A transparent, multi-source news analyzer

neutralnewsai.com
2 points·by MarcellLunczer·hace 8 meses·1 comments

Show HN: Neutral News AI – Multi-source, MNLI-checked news summaries

neutralnewsai.com
1 points·by MarcellLunczer·hace 8 meses·1 comments

comments

MarcellLunczer
·hace 8 meses·discuss
Hi HN,

I’ve been working on a system for people who want to understand what actually happened in a news story—without trusting a single outlet or a single summary.

Instead of producing another “AI summary,” the goal is to make the entire chain of reasoning transparent:

1. Pull multiple articles for the same event (left, center, right, wires, gov).

2. Extract atomic claims from all of them.

3. Retrieve the relevant evidence passages.

4. Run an MNLI model to classify each claim as Supported / Contradicted / Inconclusive.

5. Show a full receipt trail for every claim (source, quote, timestamp).

The output is less like “news” and more like a structured evidence map of the story.

Links (no signup):

• News pages: https://neutralnewsai.com

• Analyzer (paste any URL): https://neutralnewsai.com/analyzer

• Methodology: https://neutralnewsai.com/methodology

Instead of focusing on “neutral summaries,” I’ve shifted to emphasizing transparency + multi-source evidence. The summary is just the last layer; the real value is in surfacing contradictions, missing context, and uncertainty.

I’m also working on:

• A browser extension that runs the analysis on whatever article you’re reading.

• A white-label API that outputs claims + evidence + MNLI verdicts for researchers / journalists.

How it works (technical overview)

Crawling / dedup

Scheduled scrapers + curated source lists. Clustering based on title/body similarity.

Claim extraction

Sentence segmentation → classifier that detects check-worthy clauses (entities, counts, events, quotes, temporal markers).

Evidence retrieval

Sliding window over the article text + heuristics for merging overlapping snippets.

Fact-checking

DeBERTa-based MNLI model over (claim, passage). I’m currently experimenting with better aggregation for multi-passages.

Signals

Bias / sentiment / subjectivity / readability. Transformer classifiers + lightweight feature set.

Stack

Backend in Python + PostgreSQL; front-end in Angular. Server-rendered article pages for SEO + speed.

Where I’m unsure / what I’d love feedback on

1. MNLI limits At what point should I move from vanilla MNLI to something more retrieval-augmented or fine-tuned for journalism-style claims?

2. Claim extraction reliability Is it worth moving toward a more formal IE pipeline (NER + relation extraction + event frames), or does that add more complexity than it solves?

3. Uncertainty communication How would you present “inconclusive” or low-confidence cases to non-technical readers without misleading them?

4. Evaluation methodology What would a convincing benchmark look like? I have offline accuracy for several classifiers, but I haven’t found good public datasets specifically for multi-source contradictory claims.

If you see conceptual flaws or think this approach is risky, I’m genuinely open to hearing strong arguments against it.

Thanks for reading, Marcell
MarcellLunczer
·hace 8 meses·discuss
Hi HN,

I’m the co-founder of Neutral News AI: a site that tries to answer a simple question:

“What actually happened here, across multiple biased sources, and can we check the claims against the original articles?”

Link: https://neutralnewsai.com Analyzer: https://neutralnewsai.com/analyzer No signup needed to read the news or run a basic analysis.

What it does

• Crawls multiple outlets (left / center / right + wires / gov sites) for the same story.

• Generates a short, neutral summary constrained to those sources (no extra web search).

• Extracts atomic claims (events, numbers, quotes) from the draft.

• Uses an MNLI model to test each claim against the underlying articles:

• entailment → “Supported”

• contradiction → “Refuted”

• neutral → “Inconclusive”

• Surfaces a “receipt ledger” per article: claim text, verdict, quote, source, timestamp.

• Exposes the underlying models on an Analyzer page where you can paste any URL and get:

• political bias score,

• sentiment / subjectivity,

• readability metrics,

• a rough credibility signal.

Stack and models

• Backend: Python, PostgreSQL.

• Crawling / aggregation: scheduled scrapers + RSS + manual curated source lists.

• Bias / propaganda detection: transformer-based classifiers fine-tuned on public political news datasets, plus some hand-engineered features (e.g., source-level priors, readability, sentiment). In offline tests I get 93% accuracy on bias detection(happy to share more detail if people care).

• Claim extraction: sentence segmentation + a lightweight classifier to label check-worthy clauses (counts, quotes, time-bound events, entity claims).

• Fact-checking: MNLI model (currently DeBERTa-based) over (claim, evidence-passage) pairs with some heuristics to merge multiple snippets.

• Frontend: Angular + server-rendered news pages for speed and SEO.

The methodology is documented here with more detail:

https://neutralnewsai.com/methodology

What I’m unsure about

• How far I can push MNLI-style models before needing a more explicit retrieval-augmented system or custom architectures.

• Whether my current claim extraction approach is good enough for high-stakes use, or if I should move to a more formal information extraction pipeline.

• How to expose uncertainty and failure modes in a way that’s actually useful for non-technical readers.

Why I’m posting

I’d like feedback from this community on:

• ML / NLP choices you strongly disagree with.

• Evaluation: what would be a more convincing test suite or benchmark?

• UI/UX for showing “supported/refuted/inconclusive” without overselling model confidence.

I’m very open to critique. If you think this is conceptually wrong or socially dangerous, I’d also like to hear that argument.

Thanks for reading, Marcell