dgcnz commited on
Commit
6fad5c5
·
1 Parent(s): 1e7c4ad

docs: add large_50, large_100 to readme

Browse files
Files changed (2) hide show
  1. README.md +65 -1
  2. jhtdb.py +2 -0
README.md CHANGED
@@ -1,6 +1,70 @@
1
  ---
2
  dataset_info:
3
- config_name: small_50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  features:
5
  - name: lrs
6
  sequence:
 
1
  ---
2
  dataset_info:
3
+ - config_name: large_100
4
+ features:
5
+ - name: lrs
6
+ sequence:
7
+ array4_d:
8
+ shape:
9
+ - 3
10
+ - 16
11
+ - 16
12
+ - 16
13
+ dtype: float32
14
+ - name: hr
15
+ dtype:
16
+ array4_d:
17
+ shape:
18
+ - 3
19
+ - 64
20
+ - 64
21
+ - 64
22
+ dtype: float32
23
+ splits:
24
+ - name: train
25
+ num_bytes: 268237120
26
+ num_examples: 80
27
+ - name: validation
28
+ num_bytes: 33529640
29
+ num_examples: 10
30
+ - name: test
31
+ num_bytes: 33529640
32
+ num_examples: 10
33
+ download_size: 329464088
34
+ dataset_size: 335296400
35
+ - config_name: large_50
36
+ features:
37
+ - name: lrs
38
+ sequence:
39
+ array4_d:
40
+ shape:
41
+ - 3
42
+ - 16
43
+ - 16
44
+ - 16
45
+ dtype: float32
46
+ - name: hr
47
+ dtype:
48
+ array4_d:
49
+ shape:
50
+ - 3
51
+ - 64
52
+ - 64
53
+ - 64
54
+ dtype: float32
55
+ splits:
56
+ - name: train
57
+ num_bytes: 134118560
58
+ num_examples: 40
59
+ - name: validation
60
+ num_bytes: 16764820
61
+ num_examples: 5
62
+ - name: test
63
+ num_bytes: 16764820
64
+ num_examples: 5
65
+ download_size: 164732070
66
+ dataset_size: 167648200
67
+ - config_name: small_50
68
  features:
69
  - name: lrs
70
  sequence:
jhtdb.py CHANGED
@@ -90,6 +90,8 @@ class JHTDB(datasets.GeneratorBasedBuilder):
90
  VERSION = datasets.Version("1.1.0")
91
  BUILDER_CONFIGS = [
92
  datasets.BuilderConfig(name="small_50", version=VERSION, description=""),
 
 
93
  ]
94
 
95
  DEFAULT_CONFIG_NAME = "large_50"
 
90
  VERSION = datasets.Version("1.1.0")
91
  BUILDER_CONFIGS = [
92
  datasets.BuilderConfig(name="small_50", version=VERSION, description=""),
93
+ datasets.BuilderConfig(name="large_50", version=VERSION, description=""),
94
+ datasets.BuilderConfig(name="large_100", version=VERSION, description=""),
95
  ]
96
 
97
  DEFAULT_CONFIG_NAME = "large_50"