Tyrion279 commited on
Commit
2b84042
·
verified ·
1 Parent(s): e5f9c80

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +25 -109
README.md CHANGED
@@ -1,111 +1,27 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: question
5
- dtype: string
6
- - name: answer
7
- dtype: string
8
- - name: metadata
9
- struct:
10
- - name: animals
11
- struct:
12
- - name: ant
13
- dtype: int64
14
- - name: bee
15
- dtype: int64
16
- - name: beetle
17
- dtype: int64
18
- - name: bird
19
- dtype: int64
20
- - name: butterfly
21
- dtype: int64
22
- - name: cat
23
- dtype: int64
24
- - name: chicken
25
- dtype: int64
26
- - name: cockroach
27
- dtype: int64
28
- - name: cow
29
- dtype: int64
30
- - name: crab
31
- dtype: int64
32
- - name: cricket
33
- dtype: int64
34
- - name: deer
35
- dtype: int64
36
- - name: dog
37
- dtype: int64
38
- - name: duck
39
- dtype: int64
40
- - name: elephant
41
- dtype: int64
42
- - name: firefly
43
- dtype: int64
44
- - name: flatworm
45
- dtype: int64
46
- - name: giraffe
47
- dtype: int64
48
- - name: grasshopper
49
- dtype: int64
50
- - name: horse
51
- dtype: int64
52
- - name: human
53
- dtype: int64
54
- - name: insect
55
- dtype: int64
56
- - name: jellyfish
57
- dtype: int64
58
- - name: leech
59
- dtype: int64
60
- - name: lion
61
- dtype: int64
62
- - name: lobster
63
- dtype: int64
64
- - name: praying mantis
65
- dtype: int64
66
- - name: scorpion
67
- dtype: int64
68
- - name: sea slug
69
- dtype: int64
70
- - name: sheep
71
- dtype: int64
72
- - name: shrimp
73
- dtype: int64
74
- - name: snake
75
- dtype: int64
76
- - name: spider
77
- dtype: int64
78
- - name: starfish
79
- dtype: int64
80
- - name: tiger
81
- dtype: int64
82
- - name: wasp
83
- dtype: int64
84
- - name: woodlouse
85
- dtype: int64
86
- - name: difficulty
87
- struct:
88
- - name: num_animals
89
- sequence: int64
90
- - name: num_instances
91
- sequence: int64
92
- - name: num_animals
93
- dtype: int64
94
- - name: source_dataset
95
- dtype: string
96
- - name: source_index
97
- dtype: int64
98
- - name: total_legs
99
- dtype: int64
100
- splits:
101
- - name: train
102
- num_bytes: 60277
103
- num_examples: 100
104
- download_size: 29751
105
- dataset_size: 60277
106
- configs:
107
- - config_name: default
108
- data_files:
109
- - split: train
110
- path: data/train-*
111
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - question-answering
5
+ - text-generation
6
+ language:
7
+ - en
8
+ size_categories:
9
+ - 1K<n<10K
10
+ tags:
11
+ - mathematics
12
+ - reasoning
13
+ - math
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ---
15
+
16
+ # leg-counting
17
+
18
+ Leg counting task - count total legs given a list of animals with quantities.
19
+
20
+ ## Dataset Structure
21
+
22
+ This dataset is in Hugging Face datasets format. Load it with:
23
+
24
+ ```python
25
+ from datasets import load_dataset
26
+ dataset = load_dataset("Tyrion279/leg-counting")
27
+ ```