File size: 5,189 Bytes
1218161
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>GLiNER 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; /* Center content vertically */

            justify-content: center; /* Center content horizontally */

            margin: 5px;  /* Consistent margin around buttons */

            padding: 8px 10px; /* Slightly reduced vertical padding */

            background-color: white;

            border: 1px solid grey;

            color: #007bff;

            text-decoration: none;

            border-radius: 10px;

            box-sizing: border-box;

            height: 40px; /* Fixed height for uniformity */

            flex: 0 0 auto; /* No grow, no shrink, automatic basis */

        }

        .link-button img {

            max-height: 30px; /* Maximum height for images */

            margin: 0; /* Remove any default margin */

            padding: 0; /* Remove any default padding */

        }

        .links-container {

            display: flex;

            justify-content: center;

            flex-wrap: nowrap; /* Prevent wrapping */

            align-items: center; /* This should ensure vertical alignment */

            width: 100%; /* Full width to accommodate all items */

            margin-top: 10px; /* Some space above the container */

        }

        .discord-adjust {

        transform: translateY(-2px); /* Moves the button slightly upwards */

    }

    </style>
</head>
<body>
    <h2>Welcome to GLiNER HandyLab!</h2>
    <h3>With GLiNER HandyLab, you can effortlessly handle following tasks:</h3>
    <ol>
        <li><b>Named Entity Recognition (NER):</b> Identifies and categorizes entities such as names, organizations, dates, and other specific items in the text.</li>
        <li><b>Relation Extraction:</b> Detects and classifies relationships between entities within the text.</li>
        <li><b>Summarization:</b> Extract the most important sentences that summarize the input text, capturing the essential information.</li>
        <li><b>Sentiment Extraction:</b> Identify parts of the text that signalize a positive, negative, or neutral sentiment.</li>
        <li><b>Key-Phrase Extraction:</b> Identifies and extracts important phrases and keywords from the text.</li>
        <li><b>Question-answering:</b> Finding an answer in the text given a question.</li>
        <li><b>Open Information Extraction:</b> Extracts pieces of text given an open prompt from a user, for example, product description extraction.</li>
    </ol>
    <h3>What is <a href="https://github.com/urchade/GLiNER">GLiNER</a> HandyLab?</h3>
    <p>GLiNER HandyLab serves as a foundational showcase of our technological capabilities within the universal information extraction. It enployes the model <a href="https://huggingface.co/knowledgator/gliner-multitask-large-v0.5">"knowledgator/gliner-multitask-large-v0.5"</a>. GLiNER-Multitask is a model designed to extract various pieces of information from plain text based on a user-provided custom prompt. This versatile model leverages a bidirectional transformer encoder, similar to BERT, which ensures both high generalization and compute efficiency despite its compact size.<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 discord-adjust" 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>