jcarta
jcarta
How would this server work with the WebSockets example shown here: https://github.com/aws-samples/simple-websockets-chat-app ? Not really sure how to run the server with this application locally.
How would you alter this code for multi-label segmentation? I have input images that can have several labels. Can ImageDataGenerator still be used for this case?
Anyone else getting a negative loss value when using bce_dice_loss? ``` def bce_dice_loss(y_true, y_pred): return 0.5*binary_crossentropy(y_true, y_pred) - dice_coef(y_true, y_pred) def dice_coef_loss(y_true, y_pred): return 1. - dice_coef(y_true, y_pred) def dice_coef(y_true,...