zeio commited on
Commit
06e6fa2
·
verified ·
1 Parent(s): 0c57c29

feat(auto): added link to the derivative repo

Browse files
Files changed (1) hide show
  1. README.md +16 -16
README.md CHANGED
@@ -20,26 +20,26 @@ task_categories:
20
  dataset_info:
21
  - config_name: written
22
  features:
23
- - name: threads
 
 
24
  sequence:
25
- - name: topics
26
  sequence:
27
- - name: posts
28
- sequence:
29
- - name: text
30
- dtype: string
31
  - config_name: spoken
32
  features:
33
- - name: threads
 
 
 
 
34
  sequence:
35
- - name: topics
36
  sequence:
37
- - name: posts
38
- sequence:
39
- - name: text
40
- dtype: string
41
- - name: speech
42
- dtype: audio
43
  ---
44
 
45
  <p align="center">
@@ -65,7 +65,7 @@ dataset_info:
65
 
66
  ### Dataset summary
67
 
68
- This dataset contains threads parsed from the `/b/` board of [2ch archive][archive].
69
 
70
  ## Dataset structure
71
 
@@ -133,6 +133,6 @@ Therefore, this dataset entry can be represented in json in the following format
133
  ### Dataset fields
134
 
135
  In `written` configuration the dataset is represented as a list of `Thread` objects, each `Thread` has a single property `topics`, which contains a list of `Topic` objects. Each `Topic` object has a single property `posts`, which points to the list of `Post` objects, making up the `Topic`. Each `Post` object contains a single property `text` which contains text representation of the post (essentially `text` is `html` code without `tags` and explicit links to other posts; there may still be implicit links to other posts in a form of quotes, prefixed with `>` symbol).
136
- In `spoken` configuration the structure is basically the same, but some `Post` objects have and additional property `speech` with a spoken representation of the post.
137
 
138
  [archive]: https://2ch.hk/b/arch/
 
20
  dataset_info:
21
  - config_name: written
22
  features:
23
+ - name: title
24
+ dtype: string
25
+ - name: topics
26
  sequence:
27
+ - name: posts
28
  sequence:
29
+ - name: text
30
+ dtype: string
 
 
31
  - config_name: spoken
32
  features:
33
+ - name: title
34
+ dtype: string
35
+ - name: speech
36
+ dtype: audio
37
+ - name: topics
38
  sequence:
39
+ - name: posts
40
  sequence:
41
+ - name: text
42
+ dtype: string
 
 
 
 
43
  ---
44
 
45
  <p align="center">
 
65
 
66
  ### Dataset summary
67
 
68
+ This dataset contains threads parsed from the `/b/` board of [2ch archive][archive]. See dataset viewer at the [derivative repo](/datasets/zeio/auto-batch).
69
 
70
  ## Dataset structure
71
 
 
133
  ### Dataset fields
134
 
135
  In `written` configuration the dataset is represented as a list of `Thread` objects, each `Thread` has a single property `topics`, which contains a list of `Topic` objects. Each `Topic` object has a single property `posts`, which points to the list of `Post` objects, making up the `Topic`. Each `Post` object contains a single property `text` which contains text representation of the post (essentially `text` is `html` code without `tags` and explicit links to other posts; there may still be implicit links to other posts in a form of quotes, prefixed with `>` symbol).
136
+ In `spoken` configuration the structure is basically the same, but some `Thread` objects have and additional property `speech` with a spoken representation of the thread.
137
 
138
  [archive]: https://2ch.hk/b/arch/