benchmark.py 195 B

123456789101112
  1. # Measure performance
  2. from lab import neural
  3. def computePrecision(network):
  4. """
  5. Test performance of provided network.
  6. return : ratio of good answers in [0.0 ; 1.0]
  7. """
  8. # TODO
  9. return 0.0