donfu commited on
Commit
78ee0ea
1 Parent(s): fd82a20

Update Readme

Browse files
Files changed (1) hide show
  1. README.md +39 -22
README.md CHANGED
@@ -1,35 +1,52 @@
1
  ---
2
  dataset_info:
3
  features:
4
- - name: INSTRUCTION
5
- dtype: string
6
- - name: RESPONSE
7
- dtype: string
8
- - name: SOURCE
9
- dtype: string
10
- - name: METADATA
11
- struct:
12
- - name: score
13
- dtype: int64
14
- - name: tags
15
  dtype: string
16
- - name: views
17
- dtype: int64
 
 
 
 
 
 
 
 
 
 
18
  splits:
19
- - name: train
20
- num_bytes: 10242126
21
- num_examples: 3722
22
- download_size: 5649395
23
- dataset_size: 10242126
 
 
 
 
 
 
 
 
24
  ---
 
25
  # Stackexchange Instructions for OpenAssistant
26
 
27
- This dataset is taken from https://archive.org/details/stackexchange.
28
 
29
- There's a separate parquet file for each stackexchange site. For each thread which has an accepted answer, a single entry with INSTRUCTION, RESPONSE, SOURCE and METADATA attributes is created.
 
 
 
 
 
 
 
 
30
 
31
  Original extraction code by https://github.com/b-mc2
32
 
33
  ---
34
- license: cc-by-sa-4.0 // See https://archive.org/details/stackexchange for details
35
- ---
 
1
  ---
2
  dataset_info:
3
  features:
4
+ - name: INSTRUCTION
 
 
 
 
 
 
 
 
 
 
5
  dtype: string
6
+ - name: RESPONSE
7
+ dtype: string
8
+ - name: SOURCE
9
+ dtype: string
10
+ - name: METADATA
11
+ struct:
12
+ - name: question_score
13
+ dtype: int64
14
+ - name: answer_score
15
+ dtype: int64
16
+ - name: tags
17
+ dtype: string
18
  splits:
19
+ - name: train
20
+ num_bytes: 4249876711
21
+ num_examples: 6331083
22
+ download_size: 4249876711
23
+ dataset_size: 4249876711
24
+ license: cc-by-sa-4.0
25
+ language:
26
+ - en
27
+ - uk
28
+ - ru
29
+ - de
30
+ - fr
31
+ pretty_name: Open-Assistant StackExchange Instruction
32
  ---
33
+
34
  # Stackexchange Instructions for OpenAssistant
35
 
36
+ This dataset is taken from https://archive.org/details/stackexchange.
37
 
38
+ There's a single parquet file combining all stackexchange sites.
39
+ The threads have been filtered as follows: only threads with an accepted answer, for which both the question and response is less than 1000 characters have been choosen. Other answers, or questions without accepted answers, or long entries have been droppped.
40
+
41
+ Each row consists of
42
+
43
+ - INSTRUCTION
44
+ - RESPONSE
45
+ - SOURCE («stackexchange-ai«)
46
+ - METADATA (tags, question_score, answer_score).
47
 
48
  Original extraction code by https://github.com/b-mc2
49
 
50
  ---
51
+
52
+ ## license: cc-by-sa-4.0 // See https://archive.org/details/stackexchange for details