-
Notifications
You must be signed in to change notification settings - Fork 8
/
nodes.html
113 lines (107 loc) · 4 KB
/
nodes.html
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="description"
content="The largest public catalogue for Arabic NLP and speech datasets. There are more than 200 datasets annotated with more than 25 attributes."
/>
<title>مصادر | masader</title>
<link
rel="shortcut icon"
type="image/x-icon"
href="assets/images/favicons/favicon.ico"
/>
<!-- Fonts -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
/>
<!-- Style -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.datatables.net/1.11.3/css/dataTables.bootstrap5.min.css"
/>
<link href="assets/style/style.min.css" rel="stylesheet" />
</head>
<body>
<main class="main">
<!-- Navbar section -->
<div id ="nav-placeholder"></div>
<!-- END Navbar Section -->
<!-- Table section -->
<section
style="
background: linear-gradient(180deg, #fffefc -54.51%, #fff8f0 99.98%);
"
id="home"
>
<div class="container">
<div class="table-section py-4">
<div class="fa-3x loading-spinner">
<h5 class="text-center">
Fetching data <i class="fas fa-spinner fa-pulse"></i>
</h5>
</div>
<p class = "box">
Explore the datasets in Masader by zooming and moving around. The nodes were created by training
a t-sne algorithm on the abstracts embedded using <a href = "https://huggingface.co/sentence-transformers>" >sentence-transformers</a></a> then clustered using K-Means.
Hover over a node to show its info and click on it to show its full data card.
</p>
<svg style="text-align:center;"></svg>
</div>
</div>
</section>
<!-- END Table Section -->
<!-- collabrate section -->
<section class="py-md-0 pb-3 bg-warning-gradient">
<div class="container">
<div class="row flex-center">
<div class="col-md-5">
<img
class="w-100 w-lg-75 d-none d-md-block"
src="assets/images/branding-image.png"
width="320"
alt="Image that contain the logo of arbML"
/>
</div>
<div class="col-md-1"></div>
<div class="col-md-6">
<h1 class="fw-bold fs-4 fs-lg-5 fs-xl-6 mb-4 text-primary">
Collaborate with the<br class="d-none d-xl-block" />team
</h1>
<a
class="btn btn-lg hover btn-gradient"
href="https://github.com/ARBML/masader#contribution"
>Instructions</a
>
</div>
</div>
</div>
</section>
</main>
<script src="https://d3js.org/d3.v4.js"> </script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
crossorigin="anonymous"
></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://cdn.datatables.net/1.11.3/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.11.3/js/dataTables.bootstrap5.min.js"></script>
<script type="text/javascript" src="nodes.js"></script>
<script>
$.get("navigation.html", function(data){
$("#nav-placeholder").replaceWith(data);
});
</script>
</body>
</html>