01Yassine commited on
Commit
c1b5b1d
·
verified ·
1 Parent(s): 3d79f66

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +150 -17
index.html CHANGED
@@ -1,19 +1,152 @@
1
  <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
 
1
  <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width" />
6
+ <title>Phonemes Used – Iqra’Eval</title>
7
+ <style>
8
+ :root {
9
+ --navy-blue: #001f4d;
10
+ --coral: #ff6f61;
11
+ --light-gray: #f5f7fa;
12
+ --text-dark: #222;
13
+ }
14
+ body {
15
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
16
+ background-color: var(--light-gray);
17
+ color: var(--text-dark);
18
+ margin: 20px;
19
+ line-height: 1.6;
20
+ }
21
+ h1, h2 {
22
+ color: var(--navy-blue);
23
+ font-weight: 700;
24
+ margin-top: 1.2em;
25
+ }
26
+ h1 {
27
+ text-align: center;
28
+ font-size: 2.5rem;
29
+ margin-bottom: 0.5em;
30
+ }
31
+ h2 {
32
+ border-bottom: 3px solid var(--coral);
33
+ padding-bottom: 0.3em;
34
+ font-size: 1.8rem;
35
+ }
36
+ p {
37
+ max-width: 900px;
38
+ margin: 0.8em auto;
39
+ }
40
+ code {
41
+ background-color: #eef4f8;
42
+ color: var(--navy-blue);
43
+ padding: 2px 6px;
44
+ border-radius: 4px;
45
+ font-family: Consolas, monospace;
46
+ font-size: 0.9em;
47
+ }
48
+ a {
49
+ color: var(--coral);
50
+ text-decoration: none;
51
+ }
52
+ a:hover { text-decoration: underline; }
53
+ .card {
54
+ max-width: 960px;
55
+ background: white;
56
+ margin: 0 auto 40px;
57
+ padding: 2em 2.5em;
58
+ box-shadow: 0 4px 14px rgba(0,0,0,0.1);
59
+ border-radius: 12px;
60
+ }
61
+ .table-container {
62
+ overflow-x: auto;
63
+ margin: 1.5em auto;
64
+ max-width: 100%;
65
+ }
66
+ table {
67
+ border-collapse: collapse;
68
+ width: 100%;
69
+ min-width: 800px;
70
+ }
71
+ th, td {
72
+ border: 1px solid #ccc;
73
+ padding: 8px 10px;
74
+ text-align: center;
75
+ font-size: 0.9em;
76
+ }
77
+ th {
78
+ background-color: var(--navy-blue);
79
+ color: white;
80
+ font-weight: 600;
81
+ }
82
+ tr:nth-child(even) {
83
+ background-color: #f9fbfc;
84
+ }
85
+ </style>
86
+ </head>
87
+ <body>
88
+ <div class="card">
89
+ <h1>Phonemes Used</h1>
90
+ <p>
91
+ Since our goal is to detect mispronounced sounds in Qur’anic recitation, the model learns to recognize the sequence of pronounced phonemes and compare it to the target. We use the Nawar Halabi phonetizer for vowelized MSA (no tajweed rules), which covers stress, pausing, intonation, emphaticness, diphones, and gemination. Geminated consonants are represented by doubling the symbol (e.g., <code>/b/ → /bb/</code>), yielding 68 phonemes in total.
92
+ </p>
93
+ <div class="table-container">
94
+ <table>
95
+ <thead>
96
+ <tr>
97
+ <th>Arabic</th>
98
+ <th>IPA</th>
99
+ <th>Encoding</th>
100
+ <th>Arabic</th>
101
+ <th>IPA</th>
102
+ <th>Encoding</th>
103
+ </tr>
104
+ </thead>
105
+ <tbody>
106
+ <tr>
107
+ <td>ء</td><td>ʔ</td><td>&lt;</td>
108
+ <td>ب</td><td>b</td><td>b</td>
109
+ </tr>
110
+ <tr>
111
+ <td>ءّ</td><td>ʔʔ</td><td>&lt;&lt;</td>
112
+ <td>بّ</td><td>bb</td><td>bb</td>
113
+ </tr>
114
+ <tr>
115
+ <td>ت</td><td>t</td><td>t</td>
116
+ <td>تّ</td><td>tt</td><td>tt</td>
117
+ </tr>
118
+ <tr>
119
+ <td>ث</td><td>θ</td><td>^</td>
120
+ <td>ثّ</td><td>θθ</td><td>^^</td>
121
+ </tr>
122
+ <tr>
123
+ <td>ج</td><td>ʒ</td><td>j</td>
124
+ <td>جّ</td><td>ʒʒ</td><td>jj</td>
125
+ </tr>
126
+ <tr>
127
+ <td>ح</td><td>ħ</td><td>H</td>
128
+ <td>حّ</td><td>ħħ</td><td>HH</td>
129
+ </tr>
130
+ <tr>
131
+ <td>خ</td><td>χ</td><td>x</td>
132
+ <td>خّ</td><td>γχχ</td><td>xx</td>
133
+ </tr>
134
+ <tr>
135
+ <td>د</td><td>d</td><td>d</td>
136
+ <td>دّ</td><td>dd</td><td>dd</td>
137
+ </tr>
138
+ <tr>
139
+ <td>ذ</td><td>ð</td><td>Z</td>
140
+ <td>ذّ</td><td>ðð</td><td>**</td>
141
+ </tr>
142
+ <!-- continue rows for ر, ز, س, ش, ص, ض, ط, ظ, ع, غ, ف, ق, ك, ل, م, ن, ه, و*, ي*, ا, etc. -->
143
+ </tbody>
144
+ </table>
145
+ </div>
146
+ <p>
147
+ For the full phoneme inventory (all 68 symbols, including vowels & diphthongs) and examples of use, see our <a href="phoneme_inventory.html">Phoneme Inventory details page</a>.
148
+ </p>
149
+ </div>
150
+ </body>
151
  </html>
152
+