Afrizal Hasbi Azizy
commited on
Commit
•
ffe613f
1
Parent(s):
df74ebc
Update README.md
Browse files
README.md
CHANGED
@@ -28,3 +28,67 @@ configs:
|
|
28 |
- split: filtered
|
29 |
path: data/filtered-*
|
30 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
- split: filtered
|
29 |
path: data/filtered-*
|
30 |
---
|
31 |
+
Literally the title. It is processed from [wikimedia/wikipedia](https://huggingface.co/datasets/wikimedia/wikipedia). Only entries that contain the case-insensitive string 'Indonesia' is included. Now, you can use this to train a model on information about Indonesia written in Indonesian.
|
32 |
+
|
33 |
+
Additional filtering was done to remove entries that are either too short or too long.
|
34 |
+
|
35 |
+
<!DOCTYPE html>
|
36 |
+
<html lang="en">
|
37 |
+
<head>
|
38 |
+
<meta charset="UTF-8">
|
39 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
40 |
+
<title>Dataset Statistics</title>
|
41 |
+
<style>
|
42 |
+
table {
|
43 |
+
width: 100%;
|
44 |
+
border-collapse: collapse;
|
45 |
+
}
|
46 |
+
th, td {
|
47 |
+
border: 1px solid black;
|
48 |
+
padding: 8px;
|
49 |
+
text-align: left;
|
50 |
+
}
|
51 |
+
th {
|
52 |
+
background-color: #f2f2f2;
|
53 |
+
}
|
54 |
+
</style>
|
55 |
+
</head>
|
56 |
+
<body>
|
57 |
+
<table>
|
58 |
+
<thead>
|
59 |
+
<tr>
|
60 |
+
<th>Split</th>
|
61 |
+
<th>Total Word Count</th>
|
62 |
+
<th>Mean Word Count</th>
|
63 |
+
<th>Standard Deviation of Word Count</th>
|
64 |
+
<th>Median Word Count</th>
|
65 |
+
<th>Dataset Length</th>
|
66 |
+
<th>Min Word Count</th>
|
67 |
+
<th>Max Word Count</th>
|
68 |
+
</tr>
|
69 |
+
</thead>
|
70 |
+
<tbody>
|
71 |
+
<tr>
|
72 |
+
<td>All</td>
|
73 |
+
<td>47,039,325</td>
|
74 |
+
<td>299.12</td>
|
75 |
+
<td>717.74</td>
|
76 |
+
<td>98</td>
|
77 |
+
<td>157,259</td>
|
78 |
+
<td>3</td>
|
79 |
+
<td>95,967</td>
|
80 |
+
</tr>
|
81 |
+
<tr>
|
82 |
+
<td>Train</td>
|
83 |
+
<td>18,104,407</td>
|
84 |
+
<td>286.42</td>
|
85 |
+
<td>160.35</td>
|
86 |
+
<td>239</td>
|
87 |
+
<td>63,209</td>
|
88 |
+
<td>98</td>
|
89 |
+
<td>717</td>
|
90 |
+
</tr>
|
91 |
+
</tbody>
|
92 |
+
</table>
|
93 |
+
</body>
|
94 |
+
</html>
|