Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>UTC (Universal Token Classification) HandyLab App Description</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
margin: 10px; | |
line-height: 1.6; | |
} | |
.link-button { | |
display: inline-flex; | |
align-items: center; | |
justify-content: center; | |
margin: 10px; | |
padding: 10px; | |
background-color: white; | |
border: 1px solid grey; /* Added border to make the button visible against white background */ | |
color: #007bff; /* Text color changed to make it visible against white background */ | |
text-decoration: none; | |
border-radius: 10px; | |
text-align: center; | |
vertical-align: middle; | |
box-sizing: border-box; | |
} | |
.link-button:hover { | |
background-color: #c0dcfc; | |
} | |
.link-button img { | |
height: 20px; | |
width: auto; | |
display: block; | |
} | |
.links-container { | |
text-align: center; /* Center the container's content */ | |
margin: auto; /* Auto margins for horizontal centering if necessary */ | |
display: flex; /* Use flexbox */ | |
justify-content: center; /* Center flex items horizontally */ | |
flex-wrap: wrap; /* Allow items to wrap */ | |
} | |
</style> | |
</head> | |
<body> | |
<h2>Welcome to GliClass SandBox!</h2> | |
<h3>GLiClass: Generalist and Lightweight Model for Sequence Classification:</h3> | |
<ol> | |
<li><b>Zero-Shot text classification</b></li> | |
<li><b>Topic Classification</b></li> | |
<li><b>Sentiment Analysis</b></li> | |
<li><b>Reranker in RAG pipelines</b></li> | |
</ol> | |
<h3>What is GliClass?</h3> | |
<p>This is an efficient zero-shot classifier inspired by <a href="https://github.com/urchade/GLiNER/tree/main">"GLiNER"</a> work. It demonstrates the same performance as a cross-encoder while being more compute-efficient because classification is done at a single forward path. It can be used for topic classification, sentiment analysis and as a reranker in RAG pipelines.<p> | |
<h3>Remember, information extraction is not just about data; it's about insights. Let's uncover those insights together!π«</h3> | |
<!-- Links Section --> | |
<div class="links-container"> | |
<a href="https://www.knowledgator.com/" class="link-button" target="_blank"><img src="https://assets-global.website-files.com/65902be8ba48a05dfdb73331/6590476fcc8e8f35b2332781_Group%201000002504%20(1).png" alt="Visit our website"></a> | |
<a href="https://www.linkedin.com/company/knowledgator/" class="link-button" target="_blank"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/LinkedIn_Logo.svg/1280px-LinkedIn_Logo.svg.png" alt="Follow on LinkedIn"></a> | |
<a href="https://huggingface.co/knowledgator/" class="link-button" target="_blank"><img src="https://vectorseek.com/wp-content/uploads/2023/12/Hugging-Face-Logo-Vector.svg-.png" alt="Hugging Face Profile"></a> | |
<a href="https://twitter.com/knowledgator" class="link-button" target="_blank"><img src="https://freepnglogo.com/images/all_img/1691832278twitter-x-logo-png.png" alt="Follow on X"></a> | |
<a href="https://blog.knowledgator.com/" class="link-button" target="_blank"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/Medium_%28website%29_logo.svg/2560px-Medium_%28website%29_logo.svg.png" alt="Follow on Medium"></a> | |
<a href="https://discord.com/invite/dkyeAgs9DG" class="link-button" target="_blank"><img src="https://assets-global.website-files.com/6257adef93867e50d84d30e2/636e0b52aa9e99b832574a53_full_logo_blurple_RGB.png" alt="Join our Discord"> | |
</a> | |
</div> | |
</body> | |
</html> |