nameform-ru / static /index.html
ultrin's picture
Change model
78d4d36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fast API 🤗 Space served with Uvicorn</title>
<link rel="stylesheet" href="style.css" />
<script type="module" src="script.js"></script>
</head>
<body>
<main>
<section id="text-gen">
<h1>Text generation using rugpt3large_based_on_gpt2 </h1>
<p>
Model:
<a
href="https://huggingface.co/ai-forever/rugpt3large_based_on_gpt2"
rel="noreferrer"
target="_blank"
>ai-forever/rugpt3large_based_on_gpt2</a
>
</p>
<form class="text-gen-form">
<label for="text-gen-input">Текст</label>
<input
id="text-gen-input"
type="text"
value="Что идет после понедельника?"
/>
<button id="text-gen-submit">Отправить</button>
<p class="text-gen-output"></p>
</form>
</section>
</main>
</body>
</html>