LauraRuis commited on
Commit
8bea8b3
1 Parent(s): 19ca0fa

add k=15,30

Browse files
Files changed (1) hide show
  1. ludwig.py +14 -0
ludwig.py CHANGED
@@ -95,6 +95,20 @@ class Ludwig(datasets.GeneratorBasedBuilder):
95
  description="Plain text",
96
  k=10,
97
  seed=0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  )
99
  ]
100
 
 
95
  description="Plain text",
96
  k=10,
97
  seed=0
98
+ ),
99
+ LudwigConfig(
100
+ name="15-shot",
101
+ version=datasets.Version("1.0.0", ""),
102
+ description="Plain text",
103
+ k=15,
104
+ seed=0
105
+ ),
106
+ LudwigConfig(
107
+ name="30-shot",
108
+ version=datasets.Version("1.0.0", ""),
109
+ description="Plain text",
110
+ k=30,
111
+ seed=0
112
  )
113
  ]
114