KaraKaraWitch
commited on
Commit
•
cb132b5
1
Parent(s):
6ac793a
Update README.md
Browse files
README.md
CHANGED
@@ -1,13 +1,20 @@
|
|
1 |
---
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
|
5 |
-
![image/png](https://cdn-uploads.huggingface.co/production/uploads/633e85093a17ab61de8d9073/
|
6 |
|
7 |
# KaraKaraWitch/AnimuSubtitle-JP
|
8 |
|
9 |
-
...I should probably explain what this is.
|
10 |
-
|
11 |
This dataset is an extract of Subtitles from anime. The original files are sourced from nyaa.si.
|
12 |
|
13 |
## Folders
|
@@ -16,6 +23,22 @@ This dataset is an extract of Subtitles from anime. The original files are sourc
|
|
16 |
- `data_ass` (Extracted .ass subtitles from \<SOURCE A\>)
|
17 |
- `data_TS` (Extracted arib subtitles from \<SOURCE B\>)
|
18 |
|
19 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
-
|
|
|
1 |
---
|
2 |
+
license: odc-by
|
3 |
+
task_categories:
|
4 |
+
- text-classification
|
5 |
+
- text-generation
|
6 |
+
- text2text-generation
|
7 |
+
language:
|
8 |
+
- ja
|
9 |
+
tags:
|
10 |
+
- subtitles
|
11 |
+
pretty_name: Japanese AnimeSubtitles
|
12 |
---
|
13 |
|
14 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/633e85093a17ab61de8d9073/ytJWIm9jDtZIYr7pO7pxz.png)
|
15 |
|
16 |
# KaraKaraWitch/AnimuSubtitle-JP
|
17 |
|
|
|
|
|
18 |
This dataset is an extract of Subtitles from anime. The original files are sourced from nyaa.si.
|
19 |
|
20 |
## Folders
|
|
|
23 |
- `data_ass` (Extracted .ass subtitles from \<SOURCE A\>)
|
24 |
- `data_TS` (Extracted arib subtitles from \<SOURCE B\>)
|
25 |
|
26 |
+
## Dataset Format
|
27 |
+
|
28 |
+
Dataset is in Advanced SubStation Alpha (colloquially known as as ASS) [SSA/ASS Specs](https://web.archive.org/web/20170625033533/http://www.tcax.org/docs/ass-specs.htm).
|
29 |
+
|
30 |
+
If you're looking for programmatic access, you may parse the file with this [python library](https://pypi.org/project/ass/).
|
31 |
+
|
32 |
+
```py
|
33 |
+
import ass
|
34 |
+
with open("tests/test.ass", encoding='utf_8_sig') as f:
|
35 |
+
doc = ass.parse(f)
|
36 |
+
# events are subtitles lines.
|
37 |
+
# doc.events
|
38 |
+
```
|
39 |
+
|
40 |
+
You may open it in a suitable subtitle editing program such as [Aegisub](https://github.com/arch1t3cht/Aegisub/releases/latest).
|
41 |
+
|
42 |
+
## License
|
43 |
|
44 |
+
Tentatively `ODC-By` but this might change since the actual subtitles are from anime which they do have a financial incentive.
|