Spaces:
Running
Running
Commenting out lots of code
Browse files
app.py
CHANGED
@@ -22,11 +22,11 @@ image_size = numpy.shape(testX)[-1] # Determines the size of the images
|
|
22 |
test_data = numpy.reshape(testX, (len(testX), image_size, image_size, 1))
|
23 |
|
24 |
# Creates tuples that contain all of the data generated
|
25 |
-
allX = numpy.append(box_matrix_train, box_matrix_test, axis=0)
|
26 |
-
all_box_density = numpy.append(box_density_train, box_density_test, axis=0)
|
27 |
-
all_additional_pixels = numpy.append(additional_pixels_train, additional_pixels_test, axis=0)
|
28 |
-
all_box_shape = numpy.append(box_shape_train, box_shape_test, axis=0)
|
29 |
-
all_data = numpy.reshape(allX, (len(allX), image_size, image_size, 1))
|
30 |
|
31 |
|
32 |
def basic_box_array(image_size):
|
|
|
22 |
test_data = numpy.reshape(testX, (len(testX), image_size, image_size, 1))
|
23 |
|
24 |
# Creates tuples that contain all of the data generated
|
25 |
+
# allX = numpy.append(box_matrix_train, box_matrix_test, axis=0)
|
26 |
+
# all_box_density = numpy.append(box_density_train, box_density_test, axis=0)
|
27 |
+
# all_additional_pixels = numpy.append(additional_pixels_train, additional_pixels_test, axis=0)
|
28 |
+
# all_box_shape = numpy.append(box_shape_train, box_shape_test, axis=0)
|
29 |
+
# all_data = numpy.reshape(allX, (len(allX), image_size, image_size, 1))
|
30 |
|
31 |
|
32 |
def basic_box_array(image_size):
|