Datasets:

ArXiv:
License:
NamCyan commited on
Commit
0cf4a82
1 Parent(s): 9d0d843
Files changed (1) hide show
  1. the-vault.py +2 -2
the-vault.py CHANGED
@@ -52,7 +52,7 @@ class TheVaultConfig(datasets.BuilderConfig):
52
  """
53
  super().__init__(
54
  *args,
55
- name= split_set.replace("/", "_") + "_" + "+".join(languages),
56
  **kwargs,
57
  )
58
 
@@ -114,7 +114,7 @@ class TheVault(datasets.GeneratorBasedBuilder):
114
  split_set = self.config.split_set
115
  if "all" in split_set:
116
  split_set = list(num_shard_split.keys())
117
-
118
  for split in split_set:
119
  num_shards = num_shard_split[split]
120
  data_files = [
 
52
  """
53
  super().__init__(
54
  *args,
55
+ name= "+".join([split.replace("/", "_") for split in split_set]) + "-" + "+".join(languages),
56
  **kwargs,
57
  )
58
 
 
114
  split_set = self.config.split_set
115
  if "all" in split_set:
116
  split_set = list(num_shard_split.keys())
117
+
118
  for split in split_set:
119
  num_shards = num_shard_split[split]
120
  data_files = [