Datasets:
Upload adult.py
Browse files
adult.py
CHANGED
@@ -120,6 +120,8 @@ __features_per_config = {
|
|
120 |
class AdultConfig(datasets.BuilderConfig):
|
121 |
def __init__(self, **kwargs):
|
122 |
super(AdultConfig, self).__init__(version=VERSION, **kwargs)
|
|
|
|
|
123 |
self.features = __features_per_config[kwargs["name"]]
|
124 |
|
125 |
|
|
|
120 |
class AdultConfig(datasets.BuilderConfig):
|
121 |
def __init__(self, **kwargs):
|
122 |
super(AdultConfig, self).__init__(version=VERSION, **kwargs)
|
123 |
+
print(kwargs)
|
124 |
+
print(kwargs["name"])
|
125 |
self.features = __features_per_config[kwargs["name"]]
|
126 |
|
127 |
|