Central navigation and documentation hub for the IEEE IES Industrial AI Lab.
Projects · Datasets · Benchmarks · GitHub Pages
This repo hosts the GitHub Pages website for the IEEE IES Industrial AI Lab — a central entry point that links and documents the four research repositories.
Built with Jekyll and the Minimal Mistakes theme, styled with IEEE IES brand colors.
Live site: ieee-ies-industrial-ai-lab.github.io/industrial-ai-hub
| Page | URL | Content |
|---|---|---|
| Homepage | /industrial-ai-hub/ |
Hero, 4 project cards, dataset table, key results |
| Projects | /industrial-ai-hub/projects/ |
Detailed per-project descriptions, model tables, dataset links |
| Datasets | /industrial-ai-hub/datasets/ |
All 10+ benchmark datasets with access instructions |
| Benchmarks | /industrial-ai-hub/benchmarks/ |
Reproducible results tables across all 4 frameworks |
| Repo | Description |
|---|---|
| Industrial-Predictive-Maintenance | RUL prediction and fault detection on CMAPSS, CWRU, IMS, Paderborn |
| Industrial-Time-Series-AI | SOTA forecasting and anomaly detection on industrial sensor streams |
| AI-Power-Electronics-Diagnostics | Fault detection in inverters and motor drives from electrical signals |
| Smart-Manufacturing-AI | Defect detection, robot anomaly detection, RL scheduling, digital twin |
gem install bundlergit clone https://github.com/IEEE-IES-Industrial-AI-Lab/industrial-ai-hub.git
cd industrial-ai-hub
bundle installbundle exec jekyll serveThe site will be available at http://localhost:4000/industrial-ai-hub/.
On first run,
bundle installdownloads thegithub-pagesgem and all dependencies. This may take a few minutes.
- Push this repo to
github.com/IEEE-IES-Industrial-AI-Lab/industrial-ai-hub - Go to Settings → Pages
- Source:
mainbranch,/ (root)folder - Click Save
GitHub will build and publish the site automatically using Jekyll (no CI workflow needed — remote_theme is handled natively by GitHub Pages).
industrial-ai-hub/
├── _config.yml # Site config, remote_theme, nav, baseurl
├── Gemfile # github-pages + jekyll-include-cache gems
├── index.md # Homepage: splash layout with hero and project cards
├── _pages/
│ ├── projects.md # Detailed project descriptions
│ ├── datasets.md # All benchmark datasets and access notes
│ └── benchmarks.md # Benchmark results tables across all repos
├── _data/
│ └── navigation.yml # Top navigation links
├── assets/
│ └── css/
│ └── main.scss # IEEE blue (#00629B) theme override
└── README.md
To add or update content:
- New project card: add a
feature_rowentry inindex.mdand a section in_pages/projects.md - New dataset: add a row to the table in
_pages/datasets.md - New benchmark result: add a row to the appropriate table in
_pages/benchmarks.md
MIT License — see LICENSE for details.