Spaces:
Sleeping
Sleeping
File size: 368 Bytes
86ffda0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<!-- index.html -->
<html>
<head>
<title>Text Classification</title>
</head>
<body>
<h1>Text Classification with Huggingface</h1>
<form action="/classify" method="post">
<label for="text">Enter some text:</label>
<input type="text" id="text" name="text" required>
<button type="submit">Classify</button>
</form>
</body>
</html>
|