web-mobileclip / index.html
drzepka's picture
Static website using MobileCLIP
49afd21 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MobileCLIP Camera Classifier</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>MobileCLIP Camera Classifier w/ 🤗 Transformers.js</h1>
<div id="status">Loading models...</div>
<div>
<label for="classInput">Enter classes (comma-separated):</label>
<input type="text" id="classInput" value="person, car, dog, cat, phone, book" />
<button id="updateClasses">Update Classes</button>
</div>
<div>
<button id="startBtn">Start Camera</button>
<button id="stopBtn" disabled>Stop Camera</button>
</div>
<div id="mediaContainer">
<div id="videoWrapper">
<video id="video" autoplay playsinline></video>
</div>
<div id="results">
<h2>Classification Results <span id="fps"></span></h2>
<div id="resultsList"></div>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>