File size: 677 Bytes
7c0f537
 
 
 
 
 
cab1df1
7c0f537
 
 
 
cab1df1
 
 
 
 
 
 
 
 
 
7c0f537
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">

<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>SmolVLM WebGPU</title>
	<link rel="stylesheet" href="styles.css">
</head>

<body>
	<h1>SmolVLM - Vision-Language Question Answering</h1>
	<div id="app">
		<canvas id="webgpu-canvas"></canvas>
		<div id="controls">
			<input type="file" id="image-upload" accept="image/*">
			<input type="text" id="question" placeholder="Ask a question about the image">
			<button id="submit-btn">Submit</button>
		</div>
		<div id="answer">Answer will appear here</div>
	</div>
	<script type="module" src="./src/main.js"></script>
</body>

</html>