comma-fixer / static /index.html
klasocki's picture
Integrate the fine-tuned comma fixed into the app
ca2592c
raw
history blame
No virus
1.53 kB
<!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="comma-fixing">
<h2>Fixing commas using Transformers</h2>
<p>
Fine-tuned model:
<a
href="https://huggingface.co/klasocki/roberta-large-lora-ner-comma-fixer"
rel="noreferrer"
target="_blank"
>klasocki/roberta-large-lora-ner-comma-fixer
</a>
</p>
<p>
Baseline model:
<a
href="https://huggingface.co/oliverguhr/fullstop-punctuation-multilang-large"
rel="noreferrer"
target="_blank"
>oliverguhr/fullstop-punctuation-multilang-large
</a>
</p>
<form class="comma-fixing-form">
<label for="comma-fixing-input">Text with incorrect commas</label>
<input
id="comma-fixing-input"
type="text"
value="This is however a very bad, and terrible sentence grammatically that is."
/>
<button id="comma-fixing-submit">Submit</button>
<p class="comma-fixing-output"></p>
</form>
</section>
</main>
</body>
</html>