Source: https://x.com/amirmushich/status/2049817739112432097?s=52
Tweet: https://x.com/amirmushich/status/2049817739112432097?s=52
Found via: @telegram on 2026-05-03
Type: Standalone tool / Local web app
Value Score: 3/5
Why not 4: Would need proven correlation between TRIBE-predicted brain activation and actual YouTube Shorts algorithmic performance (currently theoretical), plus confirmation it runs on 8GB VRAM.
Depth: deep
Why deep: The core question—does synthetic fMRI prediction actually improve short-form view counts, or is it neuroscience theater?—requires pressure-testing the mechanism, the hardware feasibility on Eli's RTX 5070, and how it ranks against the existing Claude engagement scorer.
Verdict: Interesting experimental signal, but the leap from "brain activation" to "algorithm performance" is speculative; steal the A/B comparison workflow and timeline visualization concepts rather than adopting the heavy TRIBE v2 inference whole.
Amir Mushich built an open-source local web app that wraps Meta's TRIBE v2 (a 1B-parameter trimodal neural encoding model trained on 700+ fMRI subjects) to predict brain responses to short video content. Users upload videos; the app outputs predicted engagement curves, brain-region heatmaps (visual, auditory, language, emotion, memory, prefrontal), editing recommendations, and side-by-side A/B comparison of multiple cuts.
| Metric | Value |
|---|---|
| Repo | amirmushichge/tribeV2_ViralAnalyser |
| Stars | Unknown (brand new MVP) |
| License | Likely open source (author claims "fully open-sourced") |
| Status | MVP v1, very early |
Standalone tool — a single-purpose analyzer, not a system. It does one job: run TRIBE v2 inference on a video file and surface the predicted neurological response in an editing-friendly UI. The author's tool adds a lightweight recommendation layer (GPT-4o-style suggestions) and multi-video comparison on top of the core TRIBE v2 model. There is no compounding loop or multi-stage workflow beyond "upload → predict → compare."
rav-eade-shorts — The author's side-by-side cut comparison is the most practical feature. Eli's pipeline already generates multiple variants (jump-cut vs. raw, different captions, Ken Burns vs. static). Systematically comparing two exported cuts before upload—using any scoring signal—is a process improvement worth adopting even without TRIBE v2.rav-eade-shorts scorer — The idea of plotting a response curve across the video timeline to identify weak moments. Eli's existing scorer (src/engagement_scorer.py, called in pipeline.py Step 4) produces aggregate scores per clip (hook, completeness, flow, shareability, total/100). Adding a simple timeline graph of where attention drops within a clip would make the output more actionable for editors.rav-eade-shorts research branch — If the model can be made to run on Eli's hardware, the predicted brain-activation signal is orthogonal to the existing viral-heuristics approach. It would not replace Claude's engagement scorer but could act as a novelty filter for clips that "should" work neurologically even if they don't fit the standard viral categories.Eli's pipeline already has a sophisticated engagement evaluation layer. pipeline.py Step 4 calls src.engagement_scorer.score_engagement(), which scores each clip on hook, completeness, flow, and shareability with a 0–100 total and a verdict ("Strong viral candidate", "Good but not great", etc.). This is qualitatively different from TRIBE v2: the existing scorer uses Claude to apply a viral-DNA rubric derived from top-performing shorts, while TRIBE v2 predicts synthetic fMRI activation based on neuroscience training data. They are complementary signals, not replacements.
What Eli does not have:
Too new for organic signal. The repo dropped as an MVP in early May 2026. No significant Hacker News or Reddit discussion found yet. The publicimpact.ai team has a similar commercial wrapper and reports strong correlation between predicted brain activation and ad recall, but this is for brand advertising, not YouTube Shorts algorithmic distribution. The buzz around TRIBE v2 itself is mostly research-community enthusiasm (Algonauts 2025 winner) repurposed by marketing blogs. Buzz Assessment: Too new.
tribev2-rs) suggesting the community is already trying to optimize for lower-end hardware, but this is early.facebookresearch/tribev2 repo may assume Linux for some utilities.rav-eade-shorts — Before investing in TRIBE v2 inference, add a --compare flag to pipeline.py that takes two output directories (e.g., jumpcut/ vs. raw/) and runs the existing engagement scorer on both, outputting a side-by-side markdown report. This captures 80% of the author's workflow using tools you already have.src/engagement_scorer.py (or the scorer output formatter) to emit a simple ASCII or matplotlib graph of predicted engagement across the clip timeline, using Claude to score 5-second windows. This surfaces "weak moments" the same way TRIBE v2's ROI curves do, without the heavy model.facebookresearch/tribev2 model (not the MVP wrapper) on one 30-second Rav Eade clip to verify it loads on the RTX 5070 8GB. If it OOMs, the question is answered and the idea is blocked on hardware.Do not adopt the full TRIBE v2 inference stack yet because the hardware requirement is uncertain on 8GB VRAM and the brain-to-algorithm correlation is unproven. The single best part to extract is the A/B comparison + timeline visualization workflow—which can be built immediately using the existing Claude engagement scorer.