create test set #2
@ -4,6 +4,7 @@ from skimage.io import imread
|
|||||||
import cv2 as cv
|
import cv2 as cv
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
def load_data(input_dir, newSize=(64,64)):
|
def load_data(input_dir, newSize=(64,64)):
|
||||||
image_path = Path(input_dir)
|
image_path = Path(input_dir)
|
||||||
file_names = os.listdir(image_path)
|
file_names = os.listdir(image_path)
|
||||||
@ -34,13 +35,7 @@ def load_data(input_dir, newSize=(64,64)):
|
|||||||
|
|
||||||
s444409
commented
Hm, nie lepiej byłoby żeby ta struktura wyglądała w ten sposób?
Hm, nie lepiej byłoby żeby ta struktura wyglądała w ten sposób?
```json
[
{
"name": "plik.jpg"
"values": <np.ndarray>
},
...
]
```
|
|||||||
X = {}
|
X = {}
|
||||||
X["values"] = np.array(test_img)
|
X["values"] = np.array(test_img)
|
||||||
X["categories_name"] = categories_name
|
X["name"] = categories_name
|
||||||
X["categories_count"] = categories_count
|
X["names_count"] = categories_count
|
||||||
X["labels"] = labels
|
X["labels"] = labels
|
||||||
return X
|
return X
|
||||||
|
|
||||||
data = load_data('test_set')
|
|
||||||
print(data['categories_name'])
|
|
||||||
print(data['categories_count'])
|
|
||||||
print(data['labels'])
|
|
||||||
print(list(data["values"]))
|
|
Loading…
Reference in New Issue
Block a user
Jedna nowa linia więcej nad tą funkcją
PEP 8: E302 expected 2 blank lines, found 1