The official website of Allegro ML Research — Allegro's R&D lab dedicated to developing and applying state-of-the-art machine learning methods across e-commerce.
This is a single-page showcase website presenting the work of the Allegro ML Research team, including:
- Research Areas — Machine Translation, Language Modeling, Learning to Rank, Computer Vision, Recommendations, and ML Ops
- Talks — Conference presentations and meetup recordings
- Blog — Latest posts from blog.allegro.tech (ML Research tagged)
- Open Source — Projects like AlleNoise, allms, allRank, HerBERT, and more
- Publications — Academic papers published at top venues (AAAI, ACL, EACL, AISTATS, RecSys, LREC, etc.)
- Job Offers — Current ML-related openings at Allegro (fetched from SmartRecruiters API)
| Layer | Technology |
|---|---|
| Framework | Next.js 13 (Pages Router, Static Export) |
| Language | TypeScript 4.9 |
| UI Library | React 18 |
| Design System | Allegro Metrum (utility CSS classes) |
| UI Components | Material UI 5 (limited use) |
| Styling | Emotion, CSS Modules, Metrum CSS utilities |
| Blog Scraping | Axios + Cheerio |
| Analytics | Plausible |
├── pages/ # Next.js pages (routing)
│ ├── index.tsx # Main page — all sections live here
│ ├── _app.tsx # App wrapper (global CSS import)
│ ├── _document.tsx # Custom HTML document
│ ├── blog/ # Redirect → blog.allegro.tech
│ ├── podcast/ # Redirect → podcast.allegro.tech
│ ├── events/ # Redirect → meetup.com/allegrotech
│ ├── jobs/ # Redirect → allegro.pl/praca
│ └── [year]/[month]/[slug].tsx # Redirect legacy blog post URLs
│
├── components/ # Page-specific React components
│ ├── Header.tsx # Navigation bar with smooth scrolling
│ ├── Footer.tsx # Footer with social media links
│ ├── Post.tsx # Blog post card
│ ├── Paper.tsx # Publication entry
│ ├── Podcast.tsx # Talk/presentation card
│ ├── Job.tsx # Job offer entry
│ ├── OpenSource.tsx # Open-source project card
│ └── Projects.tsx # Research area card
│
├── metrum/ # Internal Metrum design system wrappers
│ ├── Card.tsx
│ ├── Container.tsx
│ ├── Grid.tsx
│ ├── Heading.tsx
│ ├── Link.tsx
│ ├── List.tsx
│ └── Typography.tsx
│
├── data/ # Static data files (JSON)
│ ├── publications.json # Academic publications
│ ├── presentations.json # Conference talks and videos
│ ├── open-source.json # Open-source projects
│ └── projects.json # Research team descriptions
│
├── styles/
│ ├── global.css # Global styles + Google Fonts
│ └── metrum.css # Allegro Metrum CSS imports
│
├── utils/ # Utility functions
├── public/ # Static assets (images, PDFs, favicon)
└── publications/ # Supplementary research code (Python)
- Node.js (v16 or higher recommended)
- npm
npm installnpm run devThe development server will start at http://localhost:3000.
npm run buildnpm run exportGenerates a fully static HTML site in the out/ directory, ready to be deployed to any static hosting.
Content is managed through JSON files in the data/ directory:
publications.json— Add new papers withauthors,date,paper_url,accepted_at, andpaper_titlepresentations.json— Add talks withtitle,url,who,description, andthumb(thumbnail image path)open-source.json— Add projects withname,url, anddescriptionprojects.json— Update research team descriptions withname,icon, anddescription
Blog posts are automatically scraped from blog.allegro.tech/tag/mlr at build time.
Job offers are fetched from the SmartRecruiters API at build time.
| Environment Variable | Description |
|---|---|
BASE_PATH |
Base path prefix for deployment (e.g., /ml) |
This project is licensed under the Apache License 2.0 — see the LICENSE file for details.