BioMike commited on
Commit
b006220
1 Parent(s): 37f7831

Upload introduction.html

Browse files
Files changed (1) hide show
  1. materials/introduction.html +68 -0
materials/introduction.html ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>UTC (Universal Token Classification) HandyLab App Description</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ margin: 10px;
11
+ line-height: 1.6;
12
+ }
13
+ .link-button {
14
+ display: inline-flex;
15
+ align-items: center;
16
+ justify-content: center;
17
+ margin: 10px;
18
+ padding: 10px;
19
+ background-color: white;
20
+ border: 1px solid grey; /* Added border to make the button visible against white background */
21
+ color: #007bff; /* Text color changed to make it visible against white background */
22
+ text-decoration: none;
23
+ border-radius: 10px;
24
+ text-align: center;
25
+ vertical-align: middle;
26
+ box-sizing: border-box;
27
+ }
28
+ .link-button:hover {
29
+ background-color: #c0dcfc;
30
+ }
31
+ .link-button img {
32
+ height: 20px;
33
+ width: auto;
34
+ display: block;
35
+ }
36
+ .links-container {
37
+ text-align: center; /* Center the container's content */
38
+ margin: auto; /* Auto margins for horizontal centering if necessary */
39
+ display: flex; /* Use flexbox */
40
+ justify-content: center; /* Center flex items horizontally */
41
+ flex-wrap: wrap; /* Allow items to wrap */
42
+ }
43
+ </style>
44
+ </head>
45
+ <body>
46
+ <h2>Welcome to GliClass SandBox!</h2>
47
+ <h3>GLiClass: Generalist and Lightweight Model for Sequence Classification:</h3>
48
+ <ol>
49
+ <li><b>Zero-Shot text classification</b></li>
50
+ <li><b>Topic Classification</b></li>
51
+ <li><b>Sentiment Analysis</b></li>
52
+ <li><b>Reranker in RAG pipelines</b></li>
53
+ </ol>
54
+ <h3>What is GliClass?</h3>
55
+ <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>
56
+ <h3>Remember, information extraction is not just about data; it's about insights. Let's uncover those insights together!💫</h3>
57
+ <!-- Links Section -->
58
+ <div class="links-container">
59
+ <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>
60
+ <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>
61
+ <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>
62
+ <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>
63
+ <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>
64
+ <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">
65
+ </a>
66
+ </div>
67
+ </body>
68
+ </html>