Team 25 — Predictive2 | Abhishek Meena & Meenaksh Singhania
Detecting and tracking evolving topics over time using probabilistic topic models and neural embeddings on 10 years of HuffPost news data.
Organizations monitor information streams to detect emerging narratives and societal shifts. This project builds a system to detect, track, and score trends across news categories from 2012–2022.
- Source: HuffPost News Category Dataset
- Size: ~210,000 articles
- Period: 2012–2022
- Features: headline, short_description, category, date, authors, link
Dynamic-Trend-Event-Detector/
├── data/
│ ├── raw/ # Original dataset (not tracked by git)
│ └── processed/ # Cleaned features (not tracked by git)
├── notebooks/
│ ├── 01_eda.ipynb # Exploratory data analysis
│ ├── 02_features.ipynb # Feature engineering
│ └── 03_models.ipynb # Baseline + LDA models
├── src/
│ ├── preprocess.py # Text cleaning pipeline
│ ├── features.py # Feature engineering functions
│ └── models.py # Model training and evaluation
├── results/
│ ├── plots/ # All generated figures
│ └── metrics/ # Ablation table, scores
├── report/
│ ├── main.tex # LaTeX conference report
│ └── refs.bib # Bibliography
├── config.yaml # All hyperparameters in one place
└── requirements.txt
# 1. Clone the repo
git clone https://github.com/meenaksh06/Dynamic-Trend-Event-Detector.git
cd Dynamic-Trend-Event-Detector
# 2. Install dependencies
pip install -r requirements.txt
# 3. Download dataset from Kaggle and place it at:
# data/raw/News_Category_Dataset_v3.json
# 4. Run notebooks in order
jupyter notebook| Phase | Model | Type | Metric |
|---|---|---|---|
| Baseline | TF-IDF Top-K | Frequency-based | Qualitative |
| Phase 1 | LDA (k=tuned) | Probabilistic | Coherence c_v + Perplexity |
| Phase 2 | BERTopic | Neural Embedding | TBD |
| Phase 3 | Hybrid (LDA + BERT) | Hybrid | TBD |
| Model | Coherence (c_v) | Perplexity | Notes |
|---|---|---|---|
| TF-IDF Baseline | — | — | Qualitative top-K |
| LDA (Adv ML) | updating... | updating... | Tuned num_topics |
| Hybrid (Phase 3) | TBD | TBD | Future work |
| Member | Phase 1 Responsibility |
|---|---|
| Abhishek Meena | Repo setup, temporal EDA, TF-IDF baseline, LaTeX methods/results |
| Meenaksh Singhania | Text preprocessing, LDA model + tuning, literature review, LaTeX related work |