NeuralNet-Handwriting-iOS
NeuralNet-Handwriting-iOS copied to clipboard
How to solve this expression ?

Also please look into this wrong recognition.

@MiteshiOS how you manage to run the project?
@Premal-Khetani Means ? You are not able to run project ?
@MiteshiOS yes, you solved this error, right ?
@MiteshiOS this is how I made the warning disappear.
Change this -
result = zip(real, target).map{(-$0 * (1 - $0) * ($1 - $0))}
to this -
let zipped = zip(real, target)
result = zipped.map{(-$0 * (1 - $0) * ($1 - $0))}