BioMike commited on
Commit
8f46f79
β€’
1 Parent(s): 916d63b

Update materials/introduction.html

Browse files
Files changed (1) hide show
  1. materials/introduction.html +71 -73
materials/introduction.html CHANGED
@@ -1,74 +1,72 @@
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; /* Center content vertically */
16
- justify-content: center; /* Center content horizontally */
17
- margin: 5px; /* Consistent margin around buttons */
18
- padding: 8px 10px; /* Slightly reduced vertical padding */
19
- background-color: white;
20
- border: 1px solid grey;
21
- color: #007bff;
22
- text-decoration: none;
23
- border-radius: 10px;
24
- box-sizing: border-box;
25
- height: 40px; /* Fixed height for uniformity */
26
- flex: 0 0 auto; /* No grow, no shrink, automatic basis */
27
- }
28
- .link-button img {
29
- max-height: 30px; /* Maximum height for images */
30
- margin: 0; /* Remove any default margin */
31
- padding: 0; /* Remove any default padding */
32
- }
33
- .links-container {
34
- display: flex;
35
- justify-content: center;
36
- flex-wrap: nowrap; /* Prevent wrapping */
37
- align-items: center; /* This should ensure vertical alignment */
38
- width: 100%; /* Full width to accommodate all items */
39
- margin-top: 10px; /* Some space above the container */
40
- }
41
- .discord-adjust {
42
- transform: translateY(-2px); /* Moves the button slightly upwards */
43
- }
44
- </style>
45
- </head>
46
- <body>
47
- <h2>Welcome to UTC (Universal Token Classification) HandyLab!</h2>
48
- <h3>With UTC (Universal Token Classification) HandyLab, you can effortlessly handle following tasks:</h3>
49
- <ol>
50
- <li><b>Named Entity Recognition (NER):</b> Identifies and categorizes entities such as names, organizations, dates, and other specific items in the text.</li>
51
- <li><b>Relation Extraction:</b> Detects and classifies relationships between entities within the text.</li>
52
- <li><b>Summarization:</b> Extract the most important sentences that summarize the input text, capturing the essential information.</li>
53
- <li><b>Sentiment Extraction:</b> Identify parts of the text that signalize a positive, negative, or neutral sentiment.</li>
54
- <li><b>Key-Phrase Extraction:</b> Identifies and extracts important phrases and keywords from the text.</li>
55
- <li><b>Question-answering:</b> Finding an answer in the text given a question.</li>
56
- <li><b>Open Information Extraction:</b> Extracts pieces of text given an open prompt from a user, for example, product description extraction.</li>
57
- <li><b>Text Cleaning:</b> Clear the text from unnecessary parts according to the prompt.</li>
58
- </ol>
59
- <h3>What is UTC (Universal Token Classification) HandyLab</h3>
60
- <p>UTC (Universal Token Classification) 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/UTC-DeBERTa-large-v2">"knowledgator/UTC-DeBERTa-large-v2"</a>. UTC-DeBERTa-large-v2 is a secong version of our UTC model, designed to extract various pieces of information from plain text based on a user-provided custom prompt.<p>
61
- <h3>Remember, information extraction is not just about data; it's about insights. Let's uncover those insights together!πŸ’«</h3>
62
- <!-- Links Section -->
63
- <div class="links-container">
64
- <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>
65
- <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>
66
- <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>
67
- <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>
68
- <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>
69
- <a href="https://discord.com/invite/dkyeAgs9DG" class="link-button discord-adjust" target="_blank">
70
- <img src="https://assets-global.website-files.com/6257adef93867e50d84d30e2/636e0b52aa9e99b832574a53_full_logo_blurple_RGB.png" alt="Join our Discord">
71
- </a>
72
- </div>
73
- </body>
74
  </html>
 
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 UTC (Universal Token Classification) HandyLab!</h2>
47
+ <h3>With UTC (Universal Token Classification) HandyLab, you can effortlessly handle following tasks:</h3>
48
+ <ol>
49
+ <li><b>Named Entity Recognition (NER):</b> Identifies and categorizes entities such as names, organizations, dates, and other specific items in the text.</li>
50
+ <li><b>Relation Extraction:</b> Detects and classifies relationships between entities within the text.</li>
51
+ <li><b>Summarization:</b> Extract the most important sentences that summarize the input text, capturing the essential information.</li>
52
+ <li><b>Sentiment Extraction:</b> Identify parts of the text that signalize a positive, negative, or neutral sentiment.</li>
53
+ <li><b>Key-Phrase Extraction:</b> Identifies and extracts important phrases and keywords from the text.</li>
54
+ <li><b>Question-answering:</b> Finding an answer in the text given a question.</li>
55
+ <li><b>Open Information Extraction:</b> Extracts pieces of text given an open prompt from a user, for example, product description extraction.</li>
56
+ <li><b>Text Cleaning:</b> Clear the text from unnecessary parts according to the prompt.</li>
57
+ </ol>
58
+ <h3>What is UTC (Universal Token Classification) HandyLab</h3>
59
+ <p>UTC (Universal Token Classification) 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/UTC-DeBERTa-large-v2">"knowledgator/UTC-DeBERTa-large-v2"</a>. UTC-DeBERTa-large-v2 is a secong version of our UTC model, designed to extract various pieces of information from plain text based on a user-provided custom prompt.<p>
60
+ <h3>Remember, information extraction is not just about data; it's about insights. Let's uncover those insights together!πŸ’«</h3>
61
+ <!-- Links Section -->
62
+ <div class="links-container">
63
+ <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>
64
+ <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>
65
+ <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>
66
+ <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>
67
+ <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>
68
+ <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">
69
+ </a>
70
+ </div>
71
+ </body>
 
 
72
  </html>