-
Notifications
You must be signed in to change notification settings - Fork 6
/
index1.html
181 lines (143 loc) · 5.17 KB
/
index1.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<html>
<head>
<title>Speaker Recognition</title>
<style type="text/css">
body{font-family: sans-serif;}
p{display: inline-block;}
img{display: block;}
.container{width: 90%;position absolute;margin: auto;}
.title{position: relative;width: 90%;margin: auto;text-align: center;font-weight: bold;font-size: 18px;padding: 1%;}
.section{position: relative;width: 90%;margin: auto;padding: 2%;}
.subsection{position: relative; width: 98%;text-align: justify;padding: 10px;}
.heading{position: relative; width: 98%;text-align: left;font-size: 14px;font-weight: bold;}
.text{width: 95%;font-size: 12px;text-align: justify;padding: 10px 0px 10px 0px;}
.authors{position: relative;width: 80%;margin: auto;padding: 2%;font-style: italic;text-align: center;font-size: 12px;}
.image{width: 95%;font-size: 12px;text-align: left;}
</style>
</head>
<body>
<div class="container">
<div class="title">Automatic Speech Sequence Segmentation</div>
<div class="authors">
<!-- Start edit here -->
<p>Abhishek Agrawal, Roll No.: 150102002, Branch: ECE</p>;
<p>Souradip Pal, Roll No.: 150102076, Branch: ECE</p>;
<p>Mohammed Adnan, Roll No.: 150108021, Branch: EEE</p>;
<p>Mahim Goyal, Roll No.: 150108044, Branch: EEE</p>;
<p>Sahil Thandra, Roll No.: 150108046, Branch: EEE</p>;
<!-- Stop edit here -->
</div>
<div class="section">
<div class="heading">Abstract</div>
<div class="text">
<!-- Start edit here -->
The project aims at segmenting speech sequences based on speaker transitions. Additionally, it will identify the number of speakers.
<i>This is the place where you have to write your abstract. Write a brief description about your work here. Mention the features that you have used in your work and their respective motivations.
</i><!-- Stop edit here -->
</div>
</div>
<div class="section">
<div class="heading">1. Introduction</div>
<div class="text">
<!-- Start edit here -->
Write a introduction to your project here.
<!-- Stop edit here -->
</div>
<div class="subsection">
<div class="heading">1.1 Introduction to Problem</div>
<div class="text">
<!-- Start edit here -->
Write something here.
<!-- Stop edit here -->
</div>
</div>
<div class="subsection">
<div class="heading">1.2 Figure</div>
<div class="image">
<!-- Start edit here -->
Block diagram of the system. All images must be put in a Pictures folder. An example image
<img src="Pictures/block-diagram.JPG" alt="This text displays when the image is umavailable" width="500px" height=""/>
<br>
<img src="Pictures/flow.jpg" alt="This text displays when the image is umavailable" width="500px" height=""/>
<!-- Stop edit here -->
</div>
</div>
<div class="subsection">
<div class="heading">1.3 Literature Review</div>
<div class="text">
<!-- Start edit here -->
Write something here.
<!-- Stop edit here -->
</div>
</div>
<div class="subsection">
<div class="heading">1.4 Proposed Approach</div>
<div class="text">
<!-- Start edit here -->
Describe your approach briefly here.
<!-- Stop edit here -->
</div>
</div>
<div class="subsection">
<div class="heading">1.5 Report Organization</div>
<div class="text">
<!-- Start edit here -->
Write something here.
<!-- Stop edit here -->
</div>
</div>
</div>
<div class="section">
<div class="heading">2. Proposed Approach</div>
<div class="text">
<!-- Start edit here -->
Write something here.
<!-- Stop edit here -->
</div>
</div>
<div class="section">
<div class="heading">3. Experiments & Results</div>
<div class="subsection">
<div class="heading">3.1 Dataset Description</div>
<div class="text">
<!-- Start edit here -->
Write something here.
<!-- Stop edit here -->
</div>
</div>
<div class="subsection">
<div class="heading">3.2 Discussion</div>
<div class="text">
<!-- Start edit here -->
Write something here.
<!-- Stop edit here -->
</div>
</div>
</div>
<div class="section">
<div class="heading">4. Conclusions</div>
<div class="subsection">
<div class="heading">4.1 Summary</div>
<div class="text">
<!-- Start edit here -->
Write something here.
<!-- Stop edit here -->
</div>
</div>
<div class="subsection">
<div class="heading">4.2 Future Extensions</div>
<div class="text">
<!-- Start edit here -->
Write something here.
<!-- Stop edit here -->
</div>
</div>
<video width="320" height="240" controls>
<source src="uniform.wav" type="audio/wav">
<!-- <track src="suits.vtt" kind="subtitles" srclang="en" label="English" default> -->
<track src="1_subs.vtt" kind="subtitles" srclang="en" label="English" default>
</video>
</div>
</div>
</body>
</html>