-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsp.html
80 lines (69 loc) · 2.4 KB
/
csp.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta http-equiv="refresh" content="600">
<title>Code-switching Sentence Generation</title>
<script type="text/javascript" src="js/jquery-2.1.3.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="css/bootstrap-grid.min.css"/>
<link rel="stylesheet" type="text/css" href="css/index.css"/>
<style>
/* Style the header */
header {
background-color: #666;
padding: 30px;
text-align: center;
font-size: 35px;
color: white;
}
</style>
<!--
-->
</head>
<body>
<header>
<h1 align="center">Code-switching Sentence Generation</h1>
<h2 align="center">by Generative Adversarial Networks and its Application to Data Augmentation</h3>
</header>
<ul class="nav nav-tabs justify-content-center">
<li class="nav-item">
<a class="nav-link" href="/Code-Switching-Sentence-Generation-by-GAN/" >
Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="/Code-Switching-Sentence-Generation-by-GAN/csp.html" >
CSP prediction</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/Code-Switching-Sentence-Generation-by-GAN/gen.html" >
CS Generation</a>
</li>
</ul>
<div class="nav navbar-nav">
<ul class="navbar-dark bg-dark">
<a class="nav-link active" href="/Code-Switching-Sentence-Generation-by-GAN/csp.html" >
♥Introduction</a>
<a class="nav-link" href="/Code-Switching-Sentence-Generation-by-GAN/csp-ss.html" >
♥LectureSS</a>
<a class="nav-link" href="/Code-Switching-Sentence-Generation-by-GAN/csp-seame.html" >
♥SEAME</a>
</ul>
</div>
<div class="container">
<br>
<br>
<h3 align="center">Code-switching point (CSP) prediction</h3>
<br>
<h5 align="center">It indicated the first experiment in our paper.</h5>
<h5 align="center">You can see some examples of CSP prediction by clicking the links on the top.</h5>
<h5 align="center">We show sentences in LectureSS and sentences in SEAME.</h5>
<br>
<br>
<br>
</div>
</body>
</html>