Spaces:
Sleeping
Sleeping
Update materials/introduction.html
Browse files- 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;
|
16 |
-
justify-content: center;
|
17 |
-
margin:
|
18 |
-
padding:
|
19 |
-
background-color: white;
|
20 |
-
border: 1px solid grey;
|
21 |
-
color: #007bff;
|
22 |
-
text-decoration: none;
|
23 |
-
border-radius: 10px;
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
}
|
28 |
-
.link-button
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
display:
|
35 |
-
|
36 |
-
|
37 |
-
align
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
<
|
47 |
-
<
|
48 |
-
<
|
49 |
-
|
50 |
-
<li><b>
|
51 |
-
<li><b>
|
52 |
-
<li><b>
|
53 |
-
<li><b>
|
54 |
-
<li><b>
|
55 |
-
<li><b>
|
56 |
-
<li><b>
|
57 |
-
|
58 |
-
</
|
59 |
-
<
|
60 |
-
<
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
<a href="https://www.
|
65 |
-
<a href="https://
|
66 |
-
<a href="https://
|
67 |
-
<a href="https://
|
68 |
-
<a href="https://
|
69 |
-
|
70 |
-
|
71 |
-
|
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>
|