Martin
Martin
I think in `views.py` you can add the `email_confirmed = False` value. ``` ... def create_account(): form = EmailPasswordForm() if form.validate_on_submit(): user = User( email = form.email.data, email_confirmed = False,...
@david-hagar What you are saying is correct, but I think the "negative" images make sense if your model is predicting a set of classes in every image. This can happen...
@ardamavi I've managed to convert a keras model to a working NCS graph for object detection. There is an example in my [repo](https://github.com/martinbel/yolo2NCS) . Perhaps you can get some ideas...