Before or while filing an issue please feel free to join our slack channel to get in touch with development team, ask questions, find out what's cooking and more!
Issue #, if available:
Description of changes:
function top_probability missing 'self' argument;
function postprocessing for loop syntax error: for idx, resp in data[:self._num_requests]: should be for idx, resp in enumerate(data[:self._num_requests]):, other wise it'll raise some error like TypeError: 'int' object is not iterable in python 3.
Before or while filing an issue please feel free to join our slack channel to get in touch with development team, ask questions, find out what's cooking and more!
Issue #, if available:
Description of changes:
function top_probability missing 'self' argument;
function postprocessing for loop syntax error:
for idx, resp in data[:self._num_requests]:
should befor idx, resp in enumerate(data[:self._num_requests]):
, other wise it'll raise some error likeTypeError: 'int' object is not iterable
in python 3.Testing done:
I think local build test is passed.
To run CI tests on your changes refer README.md
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.