-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.html
More file actions
81 lines (75 loc) · 3.45 KB
/
tools.html
File metadata and controls
81 lines (75 loc) · 3.45 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CxGLearner - Data & Tools</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.ico" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.ico" />
<link rel="apple-touch-icon" href="/assets/apple-touch-icon-180x180.ico" />
</head>
<body>
<div class="container">
<!-- Header Controls -->
<div class="header-controls">
<a href="index.html" class="back-btn">
<i class="fas fa-arrow-left"></i> <span class="back-text" data-en="Back to Home" data-zh="返回首页">Back to Home</span>
</a>
<div class="controls-right">
<button id="theme-toggle" class="control-btn">
<i class="fas fa-moon"></i> <span class="theme-text" data-en="Dark Mode" data-zh="深色模式">Dark Mode</span>
</button>
<button id="lang-toggle" class="control-btn">
<i class="fas fa-globe"></i> <span class="lang-text" data-en="中文" data-zh="English">中文</span>
</button>
</div>
</div>
<!-- Banner Section -->
<div class="banner">
<h1>CxGLearner: An Unsupervised Framework for Construction Grammar Induction</h1>
<p class="description" data-en="An innovative framework to grammar induction using unsupervised learning techniques"
data-zh="基于无监督的语法归纳创新框架">
An innovative approach to grammar induction using unsupervised learning techniques
</p>
<div class="authors">
<div class="institution" data-en="Zhejiang University" data-zh="浙江大学">
Zhejiang University
</div>
</div>
</div>
<!-- Tools Section -->
<div class="section">
<h2 class="section-title" data-en="Tools" data-zh="工具">Tools</h2>
<div class="tools-grid" id="tools-container">
<!-- Tools will be loaded here -->
</div>
</div>
<!-- Data Section -->
<div class="section">
<h2 class="section-title" data-en="Data & Model Collections" data-zh="数据&模型合集">Data Collections</h2>
<div id="data-container">
<!-- Data collections will be loaded here -->
</div>
</div>
</div>
<footer>
<div class="footer-content">
<div class="copyright">
<p>© 2022-2025 CxGLearner Project. Zhejiang University MMF. All rights reserved.</p>
</div>
<div class="footer-links">
<a href="https://status.unillm.top/" target="_blank">
<i class="fas fa-server"></i> <span class="service-status" data-en="Service Status" data-zh="服务状态">Service Status</span>
</a>
<span class="separator">|</span>
<a href="https://beian.miit.gov.cn/" target="_blank">
<span>浙ICP备16022527号-1</span>
</a>
</div>
</div>
</footer>
<script src="script-tools.js"></script>
</body>
</html>