train255

Results 1 comments of train255

From [this notebook](https://github.com/gsadhas/real-time-parking-occupancy-detection/blob/master/cnn_models_resnet50.ipynb) in "[23]" ```python ground_truth = [] prediction = [] for img in valid_images: label = img.split("/")[-2] if label == "Occupied": ground_truth.append(1) else: ground_truth.append(0) image = load_image(img) image...