This repository contains the source code for the official project page of VELMA (Vision-Enabled Large Multilingual Model for All). The website is designed to highlight the paper's core contributions, modular model architecture, benchmark evaluations, and interactive qualitative case studies.
The page is hosted on GitHub Pages at:
π https://RISys-Lab.github.io/VELMA-Page
βββ assets/ # Images used in qualitative case studies
βββ index.html # Main entrypoint of the project page (HTML, Tailwind CSS, JS)
βββ README.md # Project page documentation (this file)
Since the page uses a Tailwind CSS CDN and is written in vanilla HTML/JavaScript, it can be run locally without any compilation. To avoid CORS issues when loading image assets, it is recommended to run the page using a lightweight local web server.
If you have Python installed, run this command in your terminal:
python3 -m http.server 8000Then open your browser and navigate to: http://localhost:8000
If you prefer Node.js, you can use npx to spin up a quick server:
npx serve .Then navigate to the URL provided in the console (usually http://localhost:3000 or http://localhost:5000).
Follow these steps to host this project page on GitHub:
- Create a GitHub Repository: Create a new public repository on GitHub (e.g.,
VELMA-Page). - Push the Code:
git init git add . git commit -m "Initial commit of VELMA project page" git branch -M main git remote add origin https://github.com/<username>/VELMA-Page.git git push -u origin main
- Enable GitHub Pages:
- Go to your repository page on GitHub.
- Click on Settings (gear icon) -> Pages in the left sidebar.
- Under Build and deployment -> Source, select Deploy from a branch.
- Under Branch, select
mainand/ (root), then click Save.
- View the Site: Within a few minutes, GitHub Actions will deploy your page. It will be accessible at:
https://<your-username>.github.io/VELMA-Page/
- Computing Resources: We acknowledge the EuroHPC Joint Undertaking for awarding access to the Leonardo supercomputer hosted at CINECA, Italy.