rshrott commited on
Commit
d141d1c
1 Parent(s): 34ea36d

Update renovation.py

Browse files
Files changed (1) hide show
  1. renovation.py +2 -4
renovation.py CHANGED
@@ -21,21 +21,19 @@ _CITATION = """\
21
 
22
  _DESCRIPTION = """\
23
  Renovations is a dataset of images of houses taken in the field using smartphone
24
- cameras. It consists of 7 classes: Not Applicable, Very Poor, Poor, Fair, Good, Great and Excellent renovations.
25
  Data was collected by the your research lab.
26
  """
27
 
28
  _URLS = {
29
  "Not Applicable": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Not Applicable.zip",
30
- "Very Poor": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Very Poor.zip",
31
  "Poor": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Poor.zip",
32
  "Fair": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Fair.zip",
33
  "Good": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Good.zip",
34
  "Great": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Great.zip",
35
- "Excellent": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Excellent.zip"
36
  }
37
 
38
- _NAMES = ["Not Applicable", "Very Poor", "Poor", "Fair", "Good", "Great", "Excellent"]
39
  class Renovations(datasets.GeneratorBasedBuilder):
40
  """Renovations house images dataset."""
41
 
 
21
 
22
  _DESCRIPTION = """\
23
  Renovations is a dataset of images of houses taken in the field using smartphone
24
+ cameras. It consists of 7 classes: Not Applicable, Poor, Fair, Good, and Great renovations.
25
  Data was collected by the your research lab.
26
  """
27
 
28
  _URLS = {
29
  "Not Applicable": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Not Applicable.zip",
 
30
  "Poor": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Poor.zip",
31
  "Fair": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Fair.zip",
32
  "Good": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Good.zip",
33
  "Great": "https://huggingface.co/datasets/rshrott/renovation/resolve/main/Great.zip",
 
34
  }
35
 
36
+ _NAMES = ["Not Applicable", "Poor", "Fair", "Good", "Great"]
37
  class Renovations(datasets.GeneratorBasedBuilder):
38
  """Renovations house images dataset."""
39