Skip to content

Commit 91d253c

Browse files
authored
Create SmolVLM WebGPU demo (#30)
1 parent 338d225 commit 91d253c

23 files changed

+7030
-0
lines changed

smolvlm-webgpu/.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

smolvlm-webgpu/README.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
title: SmolVLM 256M Instruct WebGPU
3+
emoji: 🐨
4+
colorFrom: yellow
5+
colorTo: blue
6+
sdk: static
7+
pinned: false
8+
license: apache-2.0
9+
thumbnail: >-
10+
https://huggingface.co/spaces/HuggingFaceTB/SmolVLM-256M-Instruct-WebGPU/resolve/main/banner.png
11+
models:
12+
- HuggingFaceTB/SmolVLM-256M-Instruct
13+
---
14+
15+
# SmolVLM WebGPU
16+
17+
## Getting Started
18+
19+
Follow the steps below to set up and run the application.
20+
21+
### 1. Clone the Repository
22+
23+
Clone the examples repository from GitHub:
24+
25+
```sh
26+
git clone https://github.com/huggingface/transformers.js-examples.git
27+
```
28+
29+
### 2. Navigate to the Project Directory
30+
31+
Change your working directory to the `smolvlm-webgpu` folder:
32+
33+
```sh
34+
cd transformers.js-examples/smolvlm-webgpu
35+
```
36+
37+
### 3. Install Dependencies
38+
39+
Install the necessary dependencies using npm:
40+
41+
```sh
42+
npm i
43+
```
44+
45+
### 4. Run the Development Server
46+
47+
Start the development server:
48+
49+
```sh
50+
npm run dev
51+
```
52+
53+
The application should now be running locally. Open your browser and go to `http://localhost:5173` to see it in action.

smolvlm-webgpu/eslint.config.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import js from "@eslint/js";
2+
import globals from "globals";
3+
import react from "eslint-plugin-react";
4+
import reactHooks from "eslint-plugin-react-hooks";
5+
import reactRefresh from "eslint-plugin-react-refresh";
6+
7+
export default [
8+
{ ignores: ["dist"] },
9+
{
10+
files: ["**/*.{js,jsx}"],
11+
languageOptions: {
12+
ecmaVersion: 2020,
13+
globals: globals.browser,
14+
parserOptions: {
15+
ecmaVersion: "latest",
16+
ecmaFeatures: { jsx: true },
17+
sourceType: "module",
18+
},
19+
},
20+
settings: { react: { version: "18.3" } },
21+
plugins: {
22+
react,
23+
"react-hooks": reactHooks,
24+
"react-refresh": reactRefresh,
25+
},
26+
rules: {
27+
...js.configs.recommended.rules,
28+
...react.configs.recommended.rules,
29+
...react.configs["jsx-runtime"].rules,
30+
...reactHooks.configs.recommended.rules,
31+
"react/jsx-no-target-blank": "off",
32+
"react-refresh/only-export-components": [
33+
"warn",
34+
{ allowConstantExport: true },
35+
],
36+
},
37+
},
38+
];

smolvlm-webgpu/index.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/png" href="/logo.png" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>SmolVLM WebGPU</title>
8+
</head>
9+
10+
<body>
11+
<div id="root"></div>
12+
<script type="module" src="/src/main.jsx"></script>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)