apetulante commited on
Commit
cc8e269
·
1 Parent(s): 5867493

Update mortars_test.py

Browse files
Files changed (1) hide show
  1. mortars_test.py +10 -28
mortars_test.py CHANGED
@@ -1,19 +1,3 @@
1
- # coding=utf-8
2
- # Copyright 2021 The HuggingFace Datasets Authors and the current dataset script contributor.
3
- #
4
- # Licensed under the Apache License, Version 2.0 (the "License");
5
- # you may not use this file except in compliance with the License.
6
- # You may obtain a copy of the License at
7
- #
8
- # http://www.apache.org/licenses/LICENSE-2.0
9
- #
10
- # Unless required by applicable law or agreed to in writing, software
11
- # distributed under the License is distributed on an "AS IS" BASIS,
12
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- # See the License for the specific language governing permissions and
14
- # limitations under the License.
15
- """Beans leaf dataset with images of diseased and health leaves."""
16
-
17
  import os
18
 
19
  import datasets
@@ -25,24 +9,22 @@ _HOMEPAGE = ""
25
  _CITATION = ""
26
 
27
  _DESCRIPTION = """\
28
- Beans is a dataset of images of beans taken in the field using smartphone
29
- cameras. It consists of 3 classes: 2 disease classes and the healthy class.
30
- Diseases depicted include Angular Leaf Spot and Bean Rust. Data was annotated
31
- by experts from the National Crops Resources Research Institute (NaCRRI) in
32
- Uganda and collected by the Makerere AI research lab.
33
  """
34
 
35
  _URLS = {
36
- "train": "https://huggingface.co/datasets/apetulante/mortars_test/resolve/main/train.zip",
37
- "validation": "https://huggingface.co/datasets/apetulante/mortars_test/resolve/main/valid.zip",
38
- "test": "https://huggingface.co/datasets/apetulante/mortars_test/resolve/main/test.zip",
39
  }
40
 
41
- _NAMES = ["obsidian", "chert", "sand"]
 
 
42
 
43
 
44
- class Mortars(datasets.GeneratorBasedBuilder):
45
- """Beans plant leaf images dataset."""
46
 
47
  def _info(self):
48
  return datasets.DatasetInfo(
@@ -90,5 +72,5 @@ class Mortars(datasets.GeneratorBasedBuilder):
90
  yield i, {
91
  "image_file_path": path,
92
  "image": path,
93
- "labels": os.path.basename(os.path.dirname(path)).lower(),
94
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import os
2
 
3
  import datasets
 
9
  _CITATION = ""
10
 
11
  _DESCRIPTION = """\
12
+ This is a dataset of particle samples to be classified for the ancient mortars project.
 
 
 
 
13
  """
14
 
15
  _URLS = {
16
+ "train": "https://huggingface.co/datasets/apetulante/mortars_test/resolve/main/data/train.zip",
17
+ "validation": "https://huggingface.co/datasets/apetulante/mortars_test/resolve/main/data/valid.zip",
18
+ "test": "https://huggingface.co/datasets/apetulante/mortars_test/resolve/main/data/test.zip",
19
  }
20
 
21
+ names_file = "https://huggingface.co/datasets/apetulante/mortars_test/resolve/main/data/particle_names.txt"
22
+ names_list = open("file1.txt", "r").read().split("\n")
23
+ _NAMES = names_list
24
 
25
 
26
+ class MortarsTest(datasets.GeneratorBasedBuilder):
27
+ """Ancient particles dataset."""
28
 
29
  def _info(self):
30
  return datasets.DatasetInfo(
 
72
  yield i, {
73
  "image_file_path": path,
74
  "image": path,
75
+ "labels": os.path.basename(os.path.dirname(path)).lower().split('_')[0],
76
  }