fuliucansheng commited on
Commit
defe6dd
1 Parent(s): fb8e871

update dataset infos

Browse files
Files changed (1) hide show
  1. mininlp.py +7 -7
mininlp.py CHANGED
@@ -5,11 +5,11 @@ import logging
5
  import datasets
6
 
7
  _CITATION = """
8
- DataTest
9
  """
10
 
11
  _DESCRIPTION = """
12
- DataTest
13
  """
14
 
15
  _URLS = {
@@ -19,7 +19,7 @@ _URLS = {
19
  }
20
 
21
 
22
- class DataTestConfig(datasets.BuilderConfig):
23
  def __init__(self, **kwargs):
24
  """
25
 
@@ -29,13 +29,13 @@ class DataTestConfig(datasets.BuilderConfig):
29
  super().__init__(**kwargs)
30
 
31
 
32
- class CustomDataTest(datasets.GeneratorBasedBuilder):
33
 
34
  BUILDER_CONFIGS = [
35
- DataTestConfig(
36
- name="plain_text",
37
  version=datasets.Version("1.0.0", ""),
38
- description="Plain text",
39
  ),
40
  ]
41
 
5
  import datasets
6
 
7
  _CITATION = """
8
+ MiniNLP Data
9
  """
10
 
11
  _DESCRIPTION = """
12
+ MiniNLP Data
13
  """
14
 
15
  _URLS = {
19
  }
20
 
21
 
22
+ class MiniNLPConfig(datasets.BuilderConfig):
23
  def __init__(self, **kwargs):
24
  """
25
 
29
  super().__init__(**kwargs)
30
 
31
 
32
+ class MiniNLP(datasets.GeneratorBasedBuilder):
33
 
34
  BUILDER_CONFIGS = [
35
+ MiniNLPConfig(
36
+ name="MiniNLP",
37
  version=datasets.Version("1.0.0", ""),
38
+ description="MiniNLP Dataset For Models",
39
  ),
40
  ]
41